blob: 525e1496a3fa30303176e178b4fc78777c9fba41 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
# $Id$
chapters = chapter_*.xml
book.html: build.sh $(chapters)
sh build.sh && \
ls -l $@
.PHONY: clean
clean:
rm -f book.html
view: book.html
xdg-open book.html
.DEFAULT_GOAL := book.html
|