Franck Pommereau

remove doc gen

Showing 1 changed file with 1 additions and 6 deletions
...@@ -2,7 +2,6 @@ all: ...@@ -2,7 +2,6 @@ all:
2 @echo "Commands:" 2 @echo "Commands:"
3 @echo " release prepare source for release" 3 @echo " release prepare source for release"
4 @echo " tgz build a source tarball" 4 @echo " tgz build a source tarball"
5 - @echo " doc build API documentation"
6 @echo " dput build and upload Ubuntu packages" 5 @echo " dput build and upload Ubuntu packages"
7 @echo " clean delete some garbage files" 6 @echo " clean delete some garbage files"
8 @echo " test run tests through supported Python implementations" 7 @echo " test run tests through supported Python implementations"
...@@ -24,7 +23,7 @@ emacs: ...@@ -24,7 +23,7 @@ emacs:
24 next-ppa: 23 next-ppa:
25 echo $$((1+$$(cat debian/PPA))) > debian/PPA 24 echo $$((1+$$(cat debian/PPA))) > debian/PPA
26 25
27 -release: committed test doc tgz 26 +release: committed tgz
28 hg tag version-$$(cat VERSION) 27 hg tag version-$$(cat VERSION)
29 echo 1 > debian/PPA 28 echo 1 > debian/PPA
30 echo 1 > debian/VERSION 29 echo 1 > debian/VERSION
...@@ -36,15 +35,11 @@ lang: ...@@ -36,15 +35,11 @@ lang:
36 35
37 tgz: committed 36 tgz: committed
38 hg archive snakes-$$(cat VERSION)-$$(cat debian/VERSION) 37 hg archive snakes-$$(cat VERSION)-$$(cat debian/VERSION)
39 - cd snakes-$$(cat VERSION)-$$(cat debian/VERSION) && make doc
40 tar cf snakes-$$(cat VERSION)-$$(cat debian/VERSION).tar snakes-$$(cat VERSION)-$$(cat debian/VERSION) 38 tar cf snakes-$$(cat VERSION)-$$(cat debian/VERSION).tar snakes-$$(cat VERSION)-$$(cat debian/VERSION)
41 rm -rf snakes-$$(cat VERSION)-$$(cat debian/VERSION) 39 rm -rf snakes-$$(cat VERSION)-$$(cat debian/VERSION)
42 gzip -9 snakes-$$(cat VERSION)-$$(cat debian/VERSION).tar 40 gzip -9 snakes-$$(cat VERSION)-$$(cat debian/VERSION).tar
43 gpg --armor --sign --detach-sig snakes-$$(cat VERSION)-$$(cat debian/VERSION).tar.gz 41 gpg --armor --sign --detach-sig snakes-$$(cat VERSION)-$$(cat debian/VERSION).tar.gz
44 42
45 -doc: snakes/*.py snakes/plugins/*.py snakes/utils/*.py snakes/lang/*.py
46 - make -C doc
47 -
48 dput.sh: VERSION debian/* 43 dput.sh: VERSION debian/*
49 python mkdeb.py 44 python mkdeb.py
50 45
......