projects
/
FFT-tools.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
8554440
)
Added `dist' target to Makefile
author
W. Trevor King
<wking@drexel.edu>
Sat, 4 Oct 2008 14:11:18 +0000
(10:11 -0400)
committer
W. Trevor King
<wking@drexel.edu>
Sat, 4 Oct 2008 14:11:18 +0000
(10:11 -0400)
Makefile
patch
|
blob
|
history
diff --git
a/Makefile
b/Makefile
index 093c5110add54aa10b239e82000a7aec1f82d7f0..12f639882e59dd13dbf2e34a7c87a0df13a13493 100644
(file)
--- 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
-