You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
308 B
Makefile
16 lines
308 B
Makefile
VERSION = 0.9.9
|
|
|
|
version:
|
|
@echo "Setting version to $(VERSION)"
|
|
@echo "version = '$(VERSION)'" > Pyrex/Compiler/Version.py
|
|
|
|
clean:
|
|
@echo Cleaning Source
|
|
@rm -f *.pyc */*.pyc */*/*.pyc
|
|
@rm -f *~ */*~ */*/*~
|
|
@rm -f core */core
|
|
@(cd Demos; $(MAKE) clean)
|
|
|
|
test_setup:
|
|
python setup.py --dry-run install
|