summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVincent Batts <vbatts@hashbangbash.com>2011-04-14 15:49:09 -0400
committerVincent Batts <vbatts@hashbangbash.com>2011-04-14 15:49:09 -0400
commit74aef0abc92c9af11e8b98e30065acdad828c4d4 (patch)
tree7d040fa24b2367b91f7d0b7c8cf295db99bd1f12
parent9d84079ec0a33d3e63e4095cf5b2537bc26d5025 (diff)
downloadslackbook-74aef0abc92c9af11e8b98e30065acdad828c4d4.tar.xz
fixing the Makefile to not force rebuild everytime
-rw-r--r--Makefile5
1 files 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