Skip to content
Snippets Groups Projects
Commit 8b83fdc4 authored by Christoph Groth's avatar Christoph Groth
Browse files

make: fix and improve

parent 1321abcc
No related branches found
No related tags found
No related merge requests found
#!/bin/sh
test green.pyx -ot green.so || ( cython --cplus green.pyx && g++ -shared -pthread -fPIC -fwrapv -O3 -Wall -Wl,--no-as-needed -lgsl -lgslcblas -fno-strict-aliasing -I/usr/include/python2.7 -o green.so green.cpp )
python test.py
test green.so -nt green.pyx && exit
cython --cplus green.pyx &&
g++ -shared -pthread -fPIC -fwrapv -O3 -Wall -Wl,--no-as-needed -lgsl -lgslcblas -fno-strict-aliasing -I/usr/include/python2.7 -o green.so green.cpp &&
python test.py
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment