X-Git-Url: http://git.tomasm.cz/imago.git/blobdiff_plain/caa6399590b41e9bdebf9626eba41ed27f3ab9c6..HEAD:/makefile?ds=inline diff --git a/makefile b/makefile index bd149a7..380013c 100644 --- a/makefile +++ b/makefile @@ -1,4 +1,6 @@ -install: pcf.c - gcc -O3 -fPIC -shared -I/usr/include/python2.7/ pcf.c -lpython2.7 -o pcf.so +install: src/pcf.so + +src/pcf.so: pcf.c + gcc -Ofast -fPIC -shared -I/usr/include/python2.7/ pcf.c -lpython2.7 -o src/pcf.so clean: - rm -f pcf.so + rm -f src/pcf.so src/*.pyc