aboutsummaryrefslogtreecommitdiff
path: root/Examples/php4/variables/Makefile.old
blob: c48cc7bd5e289a92d4d1bd206d6d165ce15f4b35 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
TOP        = ../..
SWIG       = $(TOP)/../swig
SRCS       = example.c
TARGET     = php_example
INTERFACE  = example.i
SWIGOPT    = -noproxy

all::
	$(MAKE) -f $(TOP)/Makefile SRCS='$(SRCS)' SWIG='$(SWIG)' \
	SWIGOPT='$(SWIGOPT)' TARGET='$(TARGET)' INTERFACE='$(INTERFACE)' php4

clean::
	rm -f *_wrap* *.o core *~ *.so *.php php_example.h

check: all