aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorMattias Andrée <maandree@operamail.com>2012-10-28 00:03:00 +0200
committerMattias Andrée <maandree@operamail.com>2012-10-28 00:03:00 +0200
commitf259066b7fa47185d3d48a288621ec6daec3fea9 (patch)
tree1e339b57d9166dc647ff2843372c3bb8876dcbf2 /Makefile
parentb318cba20ac6b1c67d02e21af54ff6c6347e701b (diff)
downloadponysay-f259066b7fa47185d3d48a288621ec6daec3fea9.tar.gz
ponysay-f259066b7fa47185d3d48a288621ec6daec3fea9.tar.bz2
ponysay-f259066b7fa47185d3d48a288621ec6daec3fea9.zip
make manual-update + css for manual
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile14
1 files changed, 14 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..e2250b1
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,14 @@
+SHELL=bash
+
+BRANCH="$(git branch | grep \\\* | sed -e s/\*\ //g)"
+
+
+manual-update:
+ git checkout master
+ makeinfo --html "./manual/ponysay.texinfo"
+ git add "./manual/ponysay"
+ git stash
+ git checkout $(BRANCH)
+ git rm "./manual/ponysay/*"
+ git stash pop
+