git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk/SWIG@4141 626c5289-ae23-0410-ae9c-e8d60b6d4f22
16 lines
383 B
Makefile
16 lines
383 B
Makefile
TOP = ../..
|
|
SWIG = $(TOP)/../swig
|
|
CXXSRCS = example.cxx
|
|
TARGET = php_example
|
|
INTERFACE = example.i
|
|
LIBS = -lm
|
|
#SWIGOPT = -proxy
|
|
|
|
all::
|
|
$(MAKE) -f $(TOP)/Makefile CXXSRCS='$(CXXSRCS)' SWIG='$(SWIG)' \
|
|
SWIGOPT='$(SWIGOPT)' TARGET='$(TARGET)' INTERFACE='$(INTERFACE)' php4_cpp
|
|
|
|
clean::
|
|
rm -f *_wrap* *.o *~ *.so .~* core *.php php_example.h
|
|
|
|
check: all
|