git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@11356 626c5289-ae23-0410-ae9c-e8d60b6d4f22
59 lines
1.5 KiB
Makefile
59 lines
1.5 KiB
Makefile
#######################################################################
|
|
# Makefile for php test-suite
|
|
#######################################################################
|
|
|
|
LANGUAGE = php
|
|
SCRIPTSUFFIX = _runme.php
|
|
srcdir = @srcdir@
|
|
top_srcdir = @top_srcdir@
|
|
top_builddir = @top_builddir@
|
|
|
|
#CPP_TEST_CASES += \
|
|
# php_namewarn_rename \
|
|
|
|
include $(srcdir)/../common.mk
|
|
|
|
# Overridden variables here
|
|
TARGETPREFIX =# Should be php_ for Windows, empty otherwise
|
|
|
|
# Custom tests - tests with additional commandline options
|
|
# none!
|
|
|
|
# write out tests without a _runme.php
|
|
missingcpptests:
|
|
for test in $(CPP_TEST_CASES) ; do test -f $${test}_runme.php || echo $${test}; done
|
|
|
|
missingctests:
|
|
for test in $(C_TEST_CASES) ; do test -f $${test}_runme.php || echo $${test}; done
|
|
|
|
missingtests: missingcpptests missingctests
|
|
|
|
# Rules for the different types of tests
|
|
%.cpptest:
|
|
$(setup)
|
|
+$(swig_and_compile_cpp)
|
|
+$(run_testcase)
|
|
|
|
%.ctest:
|
|
$(setup)
|
|
+$(swig_and_compile_c)
|
|
+$(run_testcase)
|
|
|
|
%.multicpptest:
|
|
$(setup)
|
|
+$(swig_and_compile_multi_cpp)
|
|
+$(run_testcase)
|
|
|
|
# Runs the testcase. A testcase is only run if
|
|
# a file is found which has _runme.php appended after the testcase name.
|
|
run_testcase = \
|
|
if [ -f $(srcdir)/$(SCRIPTPREFIX)$*$(SCRIPTSUFFIX) ]; then ( \
|
|
$(MAKE) -f $(top_builddir)/$(EXAMPLES)/Makefile PHPSCRIPT=$(srcdir)/$(SCRIPTPREFIX)$*$(SCRIPTSUFFIX) RUNTOOL=$(RUNTOOL) php_run;) \
|
|
fi;
|
|
|
|
# Clean: remove the generated .php file
|
|
%.clean:
|
|
@rm -f $*.php;
|
|
|
|
clean:
|
|
$(MAKE) -f $(top_builddir)/$(EXAMPLES)/Makefile php_clean
|