You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
422 B
Makefile

.PHONY: default
default: all test
.PHONY: all
all: _test_swig.so
.PHONY: test
test:
python2.7 test_swig_test.py
_test_swig.so: test_swig.o
ld -shared test_swig.o test_swig_wrap.o -o _test_swig.so
test_swig.o: test_swig_wrap.c
gcc -fpic -c test_swig.c test_swig_wrap.c -I/usr/include/python2.7
test_swig_wrap.c: test_swig.i
swig -python $<
.PHONY: clean
clean:
rm -f *.o *.so test_swig_wrap.c *.pyc test_swig.py