1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35
|
## We require new-style dependency handling.
AUTOMAKE_OPTIONS = 1.7
NULL =
TEST_FILES = \
pk-client-helper-test.py.in \
pk-spawn-test.sh \
pk-spawn-proxy.sh \
pk-spawn-test-sigquit.sh \
pk-spawn-test-sigquit.py.in \
pk-spawn-test-profiling.sh \
pk-spawn-dispatcher.py.in \
$(NULL)
DISTCLEANFILES = \
pk-client-helper-test.py \
pk-spawn-test-sigquit.py \
pk-spawn-dispatcher.py \
$(NULL)
EXTRA_DIST = \
$(TEST_FILES) \
$(NULL)
clean-local:
rm -f *~
MAINTAINERCLEANFILES = \
*~ \
Makefile.in \
$(NULL)
-include $(top_srcdir)/git.mk
|