diff options
author | Robey Pointer <robey@lag.net> | 2003-11-04 08:34:24 +0000 |
---|---|---|
committer | Robey Pointer <robey@lag.net> | 2003-11-04 08:34:24 +0000 |
commit | 51607386c7609a483568ad935083c9668fe6241b (patch) | |
tree | 46b1083cfbd387fd181cc8fbef2ce77f837a3bd6 /Makefile |
[project @ Arch-1:robey@lag.net--2003-public%secsh--dev--1.0--base-0]
initial import
(automatically generated log message)
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 |