→ test-swig/
parent
4a95d0ae17
commit
061f188464
@ -0,0 +1,27 @@
|
||||
.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
|
Before Width: | Height: | Size: 385 KiB After Width: | Height: | Size: 385 KiB |
Loading…
Reference in New Issue