summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSean B. Palmer <sean@miscoranda.com>2010-12-28 23:33:03 +0000
committerSean B. Palmer <sean@miscoranda.com>2010-12-28 23:33:03 +0000
commit4bf7150491ccc763d559a79db242adef9709f04a (patch)
tree8b389b64b95b5980b962fb4ab1b6ff3e60bee867
parent01cebd1ccc8e83dbbbe78d27ae1f4e14b206e5b7 (diff)
downloadbot-4bf7150491ccc763d559a79db242adef9709f04a.tar.gz
bot-4bf7150491ccc763d559a79db242adef9709f04a.tar.bz2
bot-4bf7150491ccc763d559a79db242adef9709f04a.zip
Self-documenting Makefile
-rw-r--r--Makefile7
1 files changed, 7 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 715735e..6ea3aa9 100644
--- a/Makefile
+++ b/Makefile
@@ -2,17 +2,24 @@
# Copyright 2008, Sean B. Palmer, inamidst.com
# Licensed under the Eiffel Forum License 2.
+# archive - Create phenny.tar.bz2 using git archive
archive: ;
# hg archive -t tbz2 phenny-hg.tar.bz2
git archive --format=tar --prefix=phenny/ HEAD | bzip2 > phenny.tar.bz2
+# ci - Check the code into git and push to github
ci: ;
# hg ci
git commit -a && git push origin master
+# log - Show a log of recent updates
log: ;
# git log --date=short --format='%h %ad %s'
git graph
+# sync - Push phenny to pubble:opt/phenny/
sync: ;
rsync -avz ./ pubble:opt/phenny/
+
+help: ;
+ @egrep '^# [a-z]+ - ' Makefile | sed 's/# //'