summaryrefslogtreecommitdiffstats
path: root/etc/abs/Makefile.am
blob: b6b64f030c0d7dc99c678dafd635fbc3b3dc3c3b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
EXTRA_DIST = \
	abs.conf \
	supfile.community \
	supfile.core \
	supfile.extra \
	supfile.testing \
	supfile.unstable

install-data-hook:
	mkdir -p $(DESTDIR)$(sysconfdir)/abs ; \
	for j in $(EXTRA_DIST); do \
		$(INSTALL) -c -m 644 $(srcdir)/$$j $(DESTDIR)$(sysconfdir)/abs/$$j ; \
	done

uninstall-hook:
	for j in $(EXTRA_DIST); do \
		rm -f $(DESTDIR)$(sysconfdir)/abs/$$j ; \
	done

# vim:set ts=2 sw=2 noet: