1
0
mirror of https://github.com/moparisthebest/pacman synced 2024-08-13 17:03:46 -04:00
pacman/etc/abs/Makefile.am
2006-12-19 07:58:29 +00:00

18 lines
404 B
Makefile

EXTRA_DIST = abs.conf \
supfile.arch \
supfile.community \
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