mirror of
https://github.com/moparisthebest/pacman
synced 2024-11-10 03:25:01 -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>
24 lines
640 B
Makefile
24 lines
640 B
Makefile
pkgsysconfdir = ${sysconfdir}/pacman.d
|
|
dist_pkgsysconf_DATA = community current extra release testing unstable
|
|
EXTRA_DIST = mirrorlist.in
|
|
#
|
|
# Files that should be removed, but which Automake does not know.
|
|
MOSTLYCLEANFILES = $(dist_pkgsysconf_DATA)
|
|
|
|
$(dist_pkgsysconf_DATA): Makefile
|
|
rm -f $@ $@.tmp
|
|
sed \
|
|
-e "s|@REPO[@]|$@|g" \
|
|
-e 's|@CARCH[@]|$(CARCH)|g' \
|
|
$(srcdir)/mirrorlist.in >$@.tmp
|
|
mv $@.tmp $@
|
|
|
|
community: $(srcdir)/mirrorlist.in
|
|
current: $(srcdir)/mirrorlist.in
|
|
extra: $(srcdir)/mirrorlist.in
|
|
release: $(srcdir)/mirrorlist.in
|
|
testing: $(srcdir)/mirrorlist.in
|
|
unstable: $(srcdir)/mirrorlist.in
|
|
|
|
# vim:set ts=2 sw=2 noet:
|