diff options
author | Vincent Batts <vbatts@hashbangbash.com> | 2011-05-08 21:57:44 -0400 |
---|---|---|
committer | Vincent Batts <vbatts@hashbangbash.com> | 2011-05-08 21:57:44 -0400 |
commit | 33da2a8069537732643da035107e64d1feb7db52 (patch) | |
tree | 8a4e7d1dc9cb845dd750b83d4278695d7d407337 /Makefile | |
parent | b58898aaad94ff3ec2d9d0f57d9e85a96c33147a (diff) | |
download | slackbook-33da2a8069537732643da035107e64d1feb7db52.tar.xz |
adding a note into the makefile, to find dblatex, if it is not present
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -6,7 +6,7 @@ book.html: build.sh main.xml $(chapters) sh build.sh && \ ls -l $@ -book.pdf: main.xml $(chapters) +book.pdf: main.xml $(chapters) .dblatex dblatex \ --pdf \ -x'-xinclude' \ @@ -19,6 +19,9 @@ view.pdf: book.pdf view.html: book.html xdg-open $< +.dblatex: + which dblatex 2>/dev/null || echo "ERROR: 'dblatex' REQUIRED, SEE http://github.com/vbatts/SlackBuilds/ FOR THE SlackBuild" + .PHONY: clean clean: rm -f book.html book.pdf |