mirror of
https://github.com/moparisthebest/pacman
synced 2024-10-31 15:45:03 -04: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>
23 lines
276 B
Makefile
23 lines
276 B
Makefile
SUBDIRS = tests
|
|
|
|
check_SCRIPTS = \
|
|
pactest.py \
|
|
pmdb.py \
|
|
pmenv.py \
|
|
pmfile.py \
|
|
pmpkg.py \
|
|
pmrule.py \
|
|
pmtest.py \
|
|
util.py \
|
|
vercmptest.sh
|
|
|
|
noinst_SCRIPTS = $(check_SCRIPTS)
|
|
|
|
EXTRA_DIST = \
|
|
README \
|
|
TODO \
|
|
ChangeLog \
|
|
$(check_SCRIPTS)
|
|
|
|
# vim:set ts=2 sw=2 noet:
|