Makefile: Remove useless directives
I removed this directives: - relup: which called makerelease, upload_release and upload_manual - upload_release: which uploaded the release from Carsten's machine - upload_manual: which uploaded the manuals from Carsten's machine We don't need these directives anymore as the release process is done from orgmode.org server.
This commit is contained in:
parent
5466d98017
commit
d168fa81f8
12
Makefile
12
Makefile
|
@ -349,11 +349,6 @@ fixrelease:
|
|||
git push
|
||||
make updateweb
|
||||
|
||||
relup:
|
||||
${MAKE} makerelease
|
||||
${MAKE} upload_release
|
||||
${MAKE} upload_manual
|
||||
|
||||
distfile:
|
||||
@if [ "X$(TAG)" = "X" ]; then echo "*** No tag ***"; exit 1; fi
|
||||
touch doc/org.texi doc/orgcard.tex # force update
|
||||
|
@ -399,13 +394,6 @@ makerelease:
|
|||
cp RELEASEDIR/org-$(TAG).zip RELEASEDIR/org.zip
|
||||
cp RELEASEDIR/org-$(TAG).tar.gz RELEASEDIR/org.tar.gz
|
||||
|
||||
upload_release:
|
||||
rsync -avuz RELEASEDIR/ cdominik@orgmode.org:orgmode.org/
|
||||
|
||||
upload_manual:
|
||||
rsync -avuz --delete doc/manual/ cdominik@orgmode.org:orgmode.org/manual/
|
||||
rsync -avuz --delete doc/guide/ cdominik@orgmode.org:orgmode.org/guide/
|
||||
|
||||
cleanall:
|
||||
${MAKE} clean
|
||||
rm -f lisp/org-install.el
|
||||
|
|
Loading…
Reference in New Issue