diff options
Diffstat (limited to 'doc/pyrex/Makefile')
-rw-r--r-- | doc/pyrex/Makefile | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/doc/pyrex/Makefile b/doc/pyrex/Makefile new file mode 100644 index 000000000..b5905e7be --- /dev/null +++ b/doc/pyrex/Makefile @@ -0,0 +1,9 @@ +all: + python setup.py build_ext --inplace + +test: all + python run_test.py + +.PHONY: clean +clean: + rm -rf *~ *.so *.c *.o build |