Skip to content

Commit

Permalink
upload scripting in Makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
hayamiz committed Dec 28, 2009
1 parent cbd2735 commit 3947f39
Showing 1 changed file with 18 additions and 1 deletion.
19 changes: 18 additions & 1 deletion Makefile
@@ -1,7 +1,7 @@

EMACS ?= emacs

DISTRIB_FILES = twittering-mode.el README INSTALL win-curl
DISTRIB_FILES = twittering-mode.el README NEWS INSTALL win-curl

.PHONY: all check clean update-po release

Expand All @@ -18,12 +18,29 @@ clean :

DISTRIB_DIR = twittering-mode-$$(cat VERSION)

README: README.markdown
cp $< $@
NEWS: NEWS.markdown
cp $< $@
release: $(DISTRIB_FILES)
@(! [ -z "$${SF_USERNAME}" ] || (echo "Environmental variable 'SF_USERNAME', which is a username of sf.net, is required."; false))
ruby misc/vernum-updater.rb \
--prev-version=$$(cat LAST-VERSION) --next-version=$$(cat VERSION) \
VERSION twittering-mode.el doc/web/index.html
@([ -d $(DISTRIB_DIR) ] && rm -rf $(DISTRIB_DIR)) || true
mkdir $(DISTRIB_DIR)
cp README.markdown $(DISTRIB_DIR)/
cp -r -t $(DISTRIB_DIR)/ $(DISTRIB_FILES)
zip -r $(DISTRIB_DIR).zip $(addprefix $(DISTRIB_DIR)/,$(DISTRIB_FILES))
tar czvf $(DISTRIB_DIR).tar.gz $(addprefix $(DISTRIB_DIR)/,$(DISTRIB_FILES))
rm -rf $(DISTRIB_DIR)
(echo "cd /home/frs/project/t/tw/twmode/"; \
echo "-rm $(DISTRIB_DIR)/*"; \
echo "-rmdir $(DISTRIB_DIR)"; \
echo "mkdir $(DISTRIB_DIR)"; \
echo "cd $(DISTRIB_DIR)"; \
echo "put $(DISTRIB_DIR).zip"; \
echo "put $(DISTRIB_DIR).tar.gz") > upload.bat
sftp -b upload.bat $${SF_USERNAME},twmode@web.sourceforge.net
rm -f upload.bat

0 comments on commit 3947f39

Please sign in to comment.