From 74aef0abc92c9af11e8b98e30065acdad828c4d4 Mon Sep 17 00:00:00 2001 From: Vincent Batts Date: Thu, 14 Apr 2011 15:49:09 -0400 Subject: fixing the Makefile to not force rebuild everytime --- Makefile | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 766df70..525e149 100644 --- a/Makefile +++ b/Makefile @@ -2,15 +2,14 @@ chapters = chapter_*.xml -book.html: clean build.sh $(chapters) - sh build.sh +book.html: build.sh $(chapters) + sh build.sh && \ ls -l $@ .PHONY: clean clean: rm -f book.html -.PHONY: view view: book.html xdg-open book.html -- cgit v1.2.3