Created Makefiles which do both make check and make clean correctly.

git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk/SWIG@7601 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
Kevin Ruland 2005-10-07 02:36:16 +00:00
commit f32ae9abbe
54 changed files with 555 additions and 299 deletions

View file

@ -1,5 +0,0 @@
#! /bin/sh -e
${SWIG:=swig} -php4 -make -noproxy -withc example.c example.i
make
php -d extension_dir=. runme.php4

View file

@ -0,0 +1,37 @@
SWIGFLAGS =
C_SOURCES = example.c
CXX_SOURCES =
SWIG = ../../../swig
all: check
example_wrap.c: example.i
$(SWIG) -php4 $(SWIGFLAGS) example.i
OBJS= example_wrap.o $(C_SOURCES:.c=.o) $(CXX_SOURCES:.cxx=.o)
PROG=php_example.so
PHP_INC=`php-config --includes`
CFLAGS = -fpic
LDFLAGS = -shared
$(PROG): $(OBJS)
$(CXX) $(LDFLAGS) $(OBJS) -o $(PROG) $(EXTRA_LIB)
%.o: %.cpp
$(CXX) $(PHP_INC) $(CFLAGS) -c $<
%.o: %.cxx
$(CXX) $(PHP_INC) $(CFLAGS) -c $<
%.o: %.c
$(CC) $(PHP_INC) $(CFLAGS) -c $<
check: $(PROG)
@php -d extension_dir=. runme.php4
clean:
rm -f example_wrap.* *.o *~ *.so core example.php php_example.h