mirror of
https://github.com/moparisthebest/pacman
synced 2024-11-12 20:35:12 -05:00
e0afe6e94a
* Add vim modeline to Makefile.am and configure.ac * Fix white space in Makefile.am and configure.ac * Add contrib/wget-xdelta.sh to EXTRA_DIST in Makefile.am Signed-off-by: Andrew Fyfe <andrew@neptune-one.net> Signed-off-by: Dan McGee <dan@archlinux.org>
21 lines
413 B
Makefile
21 lines
413 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
|
|
|
|
# vim:set ts=2 sw=2 noet:
|