2003-06-08 10:46:19 +00:00
|
|
|
## $Id$
|
|
|
|
|
|
|
|
include $(top_srcdir)/Makefile.incl
|
|
|
|
|
2003-06-20 01:31:03 +00:00
|
|
|
TESTS = test_sanity.py \
|
|
|
|
test_uc.py \
|
|
|
|
test_concat.py \
|
|
|
|
test_1sec.py \
|
2003-06-26 00:36:22 +00:00
|
|
|
test_abort.py \
|
|
|
|
test_rsc.py \
|
2003-06-28 00:56:45 +00:00
|
|
|
test_exit.py \
|
|
|
|
test_signal.py \
|
2003-06-20 01:31:03 +00:00
|
|
|
test_backend.py
|
2003-06-08 10:46:19 +00:00
|
|
|
|
|
|
|
EXTRA_DIST = \
|
2003-06-20 01:31:03 +00:00
|
|
|
*.xml *.php *wu *result *output *input
|
|
|
|
|
|
|
|
# TODO: phase out php stuff
|
|
|
|
noinst_SCRIPTS = \
|
|
|
|
db_def_to_php db_def_to_py \
|
|
|
|
*.php version.inc.in boinc.py test_*.py version.py.in
|
|
|
|
|
|
|
|
BUILT_SOURCES = boinc_db.inc boinc_db.py
|
2003-06-11 23:09:11 +00:00
|
|
|
|
2003-06-26 23:53:37 +00:00
|
|
|
$(TESTS): version.py boinc_db.py
|
|
|
|
|
2003-06-30 21:59:18 +00:00
|
|
|
boinc_db.inc: ../db/boinc_db.h ../lib/result_state.h
|
|
|
|
cat $^ | ./db_def_to_php > $@
|
2003-06-18 02:59:57 +00:00
|
|
|
|
2003-06-30 21:59:18 +00:00
|
|
|
boinc_db.py: ../db/boinc_db.h ../lib/result_state.h
|
|
|
|
cat $^ | ./db_def_to_py > $@
|