removed obsolete issues (many of them fixed with AE)
[docutils.git] / sandbox / richard / ZReST / Makefile
blob1f78c66e822d05f420a9f59b6c342f2ff7162f2d
1 FILES = ZReST.py __init__.py refresh.txt version.txt TODO.txt README.txt
2 DTML = dtml/manage_addZReSTForm.dtml dtml/manage_editForm.dtml
3 VERSION := $(shell cat version.txt)
5 all: ${FILES} ${DTML}
6 rm -rf dist
7 mkdir dist
8 mkdir dist/ZReST
9 mkdir dist/ZReST/dtml
10 cp ${FILES} dist/ZReST
11 cp ${DTML} dist/ZReST/dtml
12 (cd dist; tar zcf ZReST-${VERSION}.tgz ZReST)
13 mv dist/ZReST-${VERSION}.tgz .
14 rm -rf dist