# $HeadURL$ $LastChangedRevision$ # # Load adeMakefile # include ../include/adeMakefile # # Tell adeMakefile where not to recurse # NOMAKE_DIRS = ref in # Without this 'make tests' will fail, because 'make tests' calls # ./testlist, testlist will fail to run the standard tests list # generator which it invokes as $(ade-config ade_lib_prefix)/tests/testlist. # We don't want to change the testlist itself because it will affect # ADE users, so we trick it's invocation of ade-config into looking # here for the generator. # # The ADE_INCLUDE_PREFIX setting is so that adetest itself will find the # .sh files it itself includes (as a normal ADE-compliant program). # # The PATH setting is so ade* commands can find ade-config and adetest # can find testlist. And also so that adeMakefile can invoke the version # of adetest in ../bin; not the installed one. tests: export ADE_CONFIG_ALLOWENV_FLAG=true tests: export ADE_LIB_PREFIX=../lib tests: export ADE_INCLUDE_PREFIX=$(shell cd ../include && pwd) tests: export PATH = ../bin:.:$(shell echo $$PATH) # # What do we have? # TESTLIST_GENERATORS = testlist # # Where do we want it? #