forked from github/kensanata.oddmuse
14 lines
446 B
Makefile
14 lines
446 B
Makefile
# The Makefile is only for developpers wanting to prepare the tarball.
|
|
# Make sure the CVS keywords for the sed command on the next line are not expanded.
|
|
|
|
VERSION=oddmuse-$(shell sed -n -e 's/^.*\$$Id: wiki\.pl,v \([0-9.]*\).*$$/\1/p' wiki.pl)
|
|
|
|
dist:
|
|
rm -rf $(VERSION)
|
|
mkdir $(VERSION)
|
|
cp README FDL GPL ChangeLog wiki.pl $(VERSION)
|
|
tar czf $(VERSION).tar.gz $(VERSION)
|
|
|
|
upload:
|
|
scp $(VERSION).tar.gz as@subversions.gnu.org:/upload/oddmuse
|