diff options
author | Vincent Batts <vbatts@hashbangbash.com> | 2010-07-08 09:44:06 -0400 |
---|---|---|
committer | Vincent Batts <vbatts@hashbangbash.com> | 2010-07-08 09:44:06 -0400 |
commit | b4f27b7bffff0fb4f0711d6255fc2cbc525369e5 (patch) | |
tree | 4afe3cb9ca2254c69f545a11925c3a38a1d71b4b /Makefile | |
parent | 281d3e2c56fcca1f1604dcb47ee0bf2e1a772b77 (diff) | |
download | slackbook-b4f27b7bffff0fb4f0711d6255fc2cbc525369e5.tar.xz |
adding a simple make file
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 13 |
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 |