From a46778fd2a35891ec1e5bda34c0b84314bcee9c1 Mon Sep 17 00:00:00 2001 From: "W. Trevor King" Date: Sat, 4 Oct 2008 10:11:18 -0400 Subject: [PATCH] Added `dist' target to Makefile --- Makefile | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) 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 - -- 2.26.2