mirror of
https://github.com/moparisthebest/pacman
synced 2024-12-24 00:38:51 -05:00
ec928faad3
Added a Makefile.am for the pactest/tests dir. This is a blatant ripoff of scripts/Makefile.am, which replaces predefined expressions in NAME.py.in pactests with configure variables. This can be used to write pactests which consider compile time options. Signed-off-by: Henning Garus <henning.garus@gmail.com> [Dan: autotools are tough, make a few adjustments for correctness] Signed-off-by: Dan McGee <dan@archlinux.org>
27 lines
567 B
Makefile
27 lines
567 B
Makefile
CONFTESTS = $(patsubst %py.in,%py,$(wildcard *.py.in))
|
|
|
|
check_SCRIPTS = \
|
|
$(wildcard *.py) \
|
|
$(CONFTESTS)
|
|
|
|
noinst_SCRIPTS = $(check_SCRIPTS)
|
|
|
|
EXTRA_DIST = $(check_SCRIPTS)
|
|
|
|
CLEANFILES = $(CONFTESTS)
|
|
|
|
#### Taken from the autoconf scripts Makefile.am ####
|
|
edit = sed \
|
|
-e 's|@LIBS[@]|$(LIBS)|g' \
|
|
-e 's|@configure_input[@]|Generated from $@.in; do not edit by hand.|g'
|
|
|
|
|
|
$(CONFTESTS): Makefile
|
|
rm -f $@ $@.tmp
|
|
test -f $(srcdir)/$@.in && $(edit) $(srcdir)/$@.in >$@.tmp || true
|
|
test -f $@.tmp || false
|
|
chmod a-w $@.tmp
|
|
mv $@.tmp $@
|
|
|
|
# vim:set ts=2 sw=2 noet:
|