forked from jfernandz/pyst2
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathMakefile
More file actions
33 lines (24 loc) · 717 Bytes
/
Makefile
File metadata and controls
33 lines (24 loc) · 717 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
CDUP=../..
PKG=asterisk
PY=agi.py agitb.py config.py __init__.py manager.py
SRC=Makefile MANIFEST.in setup.py README README.html \
$(PY:%.py=$(PKG)/%.py)
VERSIONPY=asterisk/Version.py
VERSION=$(VERSIONPY)
LASTRELEASE:=$(shell ../svntools/lastrelease -n)
USERNAME=schlatterbeck
PROJECT=pyst2
PACKAGE=${PROJECT}
CHANGES=changes
NOTES=notes
all: $(VERSION)
$(VERSION): $(SRC)
dist: all
python setup.py sdist --formats=gztar,zip
clean:
rm -f MANIFEST README.html default.css \
$(PKG)/Version.py $(PKG)/Version.pyc ${CHANGES} ${NOTES} \
upload ReleaseNotes.txt announce_pypi upload_homepage
rm -rf dist build
release: upload upload_homepage announce_pypi announce
include ../make/Makefile-sf