cython-devel
changeset 909:9235d5b9e530
Makefile enhancements.
| author | kirr@landau.phys.spbu.ru |
|---|---|
| date | Sat Aug 02 23:43:04 2008 -0700 (3 years ago) |
| parents | 7a1defb8455d |
| children | c44a32d39e99 |
| files | Makefile |
line diff
1.1 --- a/Makefile Sat Aug 02 23:35:16 2008 -0700
1.2 +++ b/Makefile Sat Aug 02 23:43:04 2008 -0700
1.3 @@ -1,11 +1,17 @@
1.4 PYTHON?=python
1.5
1.6 +all: local
1.7 +
1.8 +local:
1.9 + ${PYTHON} setup.py build_ext --inplace
1.10 +
1.11 clean:
1.12 @echo Cleaning Source
1.13 @rm -fr build
1.14 @rm -f *.pyc */*.pyc */*/*.pyc
1.15 @rm -f *~ */*~ */*/*~
1.16 @rm -f core */core
1.17 + @rm -f Cython/Plex/Scanners.{so,pyd}
1.18 @(cd Demos; $(MAKE) clean)
1.19
1.20 testclean:
