Library linking demo.
[cython.git] / Demos / Makefile
1 all:
2         python Setup.py build_ext --inplace
3
4 test:   all
5         python run_primes.py 20
6         python run_numeric_demo.py
7         python run_spam.py
8         cd callback; $(MAKE) test
9
10 clean:
11         @echo Cleaning Demos
12         @rm -f *.c *.o *.so *~ core
13         @rm -rf build
14         @cd callback; $(MAKE) clean
15         @cd embed; $(MAKE) clean