From: W. Trevor King Date: Sat, 4 Oct 2008 14:11:18 +0000 (-0400) Subject: Added `dist' target to Makefile X-Git-Tag: 0.2~2 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=a46778fd2a35891ec1e5bda34c0b84314bcee9c1;p=FFT-tools.git Added `dist' target to Makefile --- diff --git a/Makefile b/Makefile index 093c511..12f6398 100644 --- a/Makefile +++ b/Makefile @@ -1,3 +1,5 @@ +.PHONY : all check dist clean + all : dummy_py dummy_py : setup.py FFT_tools.py @@ -7,8 +9,11 @@ dummy_py : setup.py FFT_tools.py check : all python FFT_tools.py +dist : + python setup.py sdist + scp dist/FFT_tools*tar.gz einstein:public_html/code/python/ + clean : python setup.py clean rm -rf build dist FFT_tools.egg-info rm -f dummy_py *.pyc -