/tags/rel-1-3-25/SWIG/Examples/php4/Makefile.php
PHP | 30 lines | 23 code | 5 blank | 2 comment | 3 complexity | 121da8d55f24304b6d1a0539a26480d6 MD5 | raw file
Possible License(s): LGPL-2.1, Cube, GPL-3.0, 0BSD, GPL-2.0
1CRUD=acinclude.m4 aclocal.m4 config.cache config.h config.h.in config.log \ 2 config.m4 config.nice config.status config.sub configure configure.in \ 3 config_vars.mk config.guess CREDITS dynlib.m4 *.so *.lo *.o *.slo \ 4 install-sh libs.mk libtool ltmain.sh Makefile Makefile.in missing \ 5 mkinstalldirs php_example.h php_example.la *_wrap.c* example.php \ 6 build modules .deps .libs conftest conftest.c 7 8all: check 9 10check: BUILD.sh 11 ./BUILD.sh 12# SWIG=$(SWIG) ./BUILD.sh 13 14# This one is fun! How do we know what shouldn't be there? 15clean: 16 rm -fr $(CRUD) 17 18BUILD.sh: 19 echo "-------------------------------------------------" 20 echo `pwd`"/BUILD.sh missing!" 21 echo "I need BUILD.sh file to show me how to invoke swig" 22 echo "It usually looks like this:" 23 echo 24 echo "swig -php -phpfull -c++ <extra options> example.i" 25 echo "# and then the rest is always the same..." 26 echo "phpize && ./configure && make && make install" 27 echo 28 echo 29 exit 1 30