Test now is not build automatically, make test should be given explicitely, then a new script run_tests will be used to check if everything still works
This commit is contained in:
parent
ed6ae447e8
commit
05ed67ccd1
1 changed files with 3 additions and 3 deletions
|
|
@ -4,7 +4,7 @@
|
||||||
##
|
##
|
||||||
###############################################################################
|
###############################################################################
|
||||||
|
|
||||||
SUBDIRS = src test win tutorial app
|
SUBDIRS = src win tutorial app
|
||||||
#Directory for documents
|
#Directory for documents
|
||||||
DOCDIR = ~/public_html/eodocs
|
DOCDIR = ~/public_html/eodocs
|
||||||
#Directory for indices -- not useful for the user
|
#Directory for indices -- not useful for the user
|
||||||
|
|
@ -17,8 +17,8 @@ EXTRA_DIST=LICENSE
|
||||||
lib:
|
lib:
|
||||||
pushd src; $(MAKE) all; popd
|
pushd src; $(MAKE) all; popd
|
||||||
|
|
||||||
test:
|
test: test/run_tests
|
||||||
pushd test; $(MAKE) all; popd
|
pushd test; $(MAKE) all; ./run_tests; touch run_tests; popd
|
||||||
|
|
||||||
# so that make doc always compiles the doc ...
|
# so that make doc always compiles the doc ...
|
||||||
doc: doc/eo.cfg
|
doc: doc/eo.cfg
|
||||||
|
|
|
||||||
Reference in a new issue