summaryrefslogtreecommitdiffstats
path: root/etc/abs/Makefile.am
blob: 1c10d0b7c096b6e1f6b91b1f81972293f8a216c3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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