From b4f27b7bffff0fb4f0711d6255fc2cbc525369e5 Mon Sep 17 00:00:00 2001 From: Vincent Batts Date: Thu, 8 Jul 2010 09:44:06 -0400 Subject: adding a simple make file --- Makefile | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 Makefile 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 -- cgit v1.2.3