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.
28 lines
795 B
Makefile
28 lines
795 B
Makefile
.PHONY: default
|
|
default: all test
|
|
|
|
.PHONY: all
|
|
all: _test_swig.so _test_swig_opencv.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 $<
|
|
|
|
_test_swig_opencv.so: test_swig_opencv.cpp test_swig_opencv.i okapi-typemaps.i numpy.i
|
|
swig -python -c++ test_swig_opencv.i
|
|
g++ -fpic -c test_swig_opencv.cpp test_swig_opencv_wrap.cxx -I/usr/include/python2.7
|
|
g++ -shared test_swig_opencv.o test_swig_opencv_wrap.o -lopencv_core -o _test_swig_opencv.so
|
|
|
|
.PHONY: clean
|
|
clean:
|
|
rm -f *.o *.so test_swig_wrap.c test_swig_opencv_wrap.cxx *.pyc test_swig.py test_swig_opencv.py
|