Initial version
[cython.git] / Makefile
1 VERSION = 0.9.4.1
2
3 version:
4         @echo "Setting version to $(VERSION)"
5         @echo "version = '$(VERSION)'" > Pyrex/Compiler/Version.py
6
7 #check_contents:
8 #       @if [ ! -d Pyrex/Distutils ]; then \
9 #               echo Pyrex/Distutils missing; \
10 #               exit 1; \
11 #       fi
12
13 clean:
14         @echo Cleaning Source
15         @rm -f *.pyc */*.pyc */*/*.pyc 
16         @rm -f *~ */*~ */*/*~
17         @rm -f core */core
18         @(cd Demos; $(MAKE) clean)