diff options
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 00000000..beb5526b --- /dev/null +++ b/Makefile @@ -0,0 +1,22 @@ +# releases: +# aerodactyl (13sep03) +# bulbasaur +# charmander + +RELEASE=bulbasaur + +release: + mkdir ../secsh-$(RELEASE) + cp README ../secsh-$(RELEASE) + cp *.py ../secsh-$(RELEASE) + cd .. && zip -r secsh-$(RELEASE).zip secsh-$(RELEASE) + echo rm -rf ../secsh-$(RELEASE) + +py: + python ./setup.py sdist --formats=zip + +# places where the version number is stored: +# +# setup.py +# secsh.py +# README |