aboutsummaryrefslogtreecommitdiff
path: root/Examples/php4/reference/Makefile.old
blob: 7465de8045bd3d9162f17a01dc05b07e099cc78b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
TOP        = ../..
SWIG       = $(TOP)/../swig
CXXSRCS    = example.cxx
TARGET     = php_example
INTERFACE  = example.i
LIBS       = -lm
SWIGOPT    = -noproxy

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_example.h *.php

check: all