pacman/etc/pacman.d/Makefile.am

18 lines
414 B
Makefile
Raw Normal View History

pkgsysconfdir = ${sysconfdir}/pacman.d
dist_pkgsysconf_DATA = mirrorlist
EXTRA_DIST = mirrorlist.in
#
# Files that should be removed, but which Automake does not know.
MOSTLYCLEANFILES = $(dist_pkgsysconf_DATA)
2006-10-15 18:08:57 -04:00
$(dist_pkgsysconf_DATA): Makefile
rm -f $@ $@.tmp
sed \
-e 's|@CARCH[@]|$(CARCH)|g' \
$(srcdir)/mirrorlist.in >$@.tmp
mv $@.tmp $@
2007-01-16 22:40:08 -05:00
mirrorlist: $(srcdir)/mirrorlist.in
# vim:set ts=2 sw=2 noet: