summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVincent Batts <vbatts@hashbangbash.com>2010-07-08 09:44:06 -0400
committerVincent Batts <vbatts@hashbangbash.com>2010-07-08 09:44:06 -0400
commitb4f27b7bffff0fb4f0711d6255fc2cbc525369e5 (patch)
tree4afe3cb9ca2254c69f545a11925c3a38a1d71b4b
parent281d3e2c56fcca1f1604dcb47ee0bf2e1a772b77 (diff)
downloadslackbook-b4f27b7bffff0fb4f0711d6255fc2cbc525369e5.tar.xz
adding a simple make file
-rw-r--r--Makefile13
1 files changed, 13 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..daef830
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,13 @@
+# $Id$
+
+chapters = chapter_*.xml
+
+book.html: clean build.sh $(chapters)
+ sh build.sh
+ ls -l $@
+
+.PHONY: clean
+clean:
+ rm -f book.html
+
+.DEFAULT_GOAL := book.html