From: W. Trevor King Date: Thu, 31 Mar 2011 19:53:03 +0000 (-0400) Subject: Remove Makefile (just use distutils via setup.py). X-Git-Tag: v0.4~10 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=27691f53f6a2a37b192cf9719813266525d363ec;p=stepper.git Remove Makefile (just use distutils via setup.py). --- diff --git a/Makefile b/Makefile deleted file mode 100644 index ff388c0..0000000 --- a/Makefile +++ /dev/null @@ -1,19 +0,0 @@ -.PHONY : all check dist clean - -all : dummy_py - -dummy_py : setup.py stepper.py - python setup.py install --home=~ - echo "dummy for Makefile dependencies" > $@ - -check : all - python stepper.py - -dist : - python setup.py sdist - scp dist/stepper*tar.gz einstein:public_html/code/python/ - -clean : - python setup.py clean - rm -rf build dist stepper.egg-info - rm -f dummy_py *.pyc