diff options
author | Benjamin Franzke <benjaminfranzke@googlemail.com> | 2012-07-02 16:30:05 +0200 |
---|---|---|
committer | Benjamin Franzke <benjaminfranzke@googlemail.com> | 2012-07-02 16:30:05 +0200 |
commit | 7b9ff5843a6addd3139efe4bfe958fd332823fde (patch) | |
tree | 92b66602b7756c9fb07e4087fea802e23041c8c6 /Makefile | |
parent | 9cd02dc1053893f09fbf856d591248a8e4953ebe (diff) | |
download | bible-fetch-7b9ff5843a6addd3139efe4bfe958fd332823fde.tar.gz bible-fetch-7b9ff5843a6addd3139efe4bfe958fd332823fde.tar.bz2 bible-fetch-7b9ff5843a6addd3139efe4bfe958fd332823fde.zip |
Add html suffix to downloaded chapter files
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,9 +1,9 @@ CHAPTERS=$(shell ./list-chapters.sh) -CHAPTERS_XML=$(CHAPTERS:=.xml) +CHAPTERS_XML=$(CHAPTERS:.html=.xml) all: book-list elberfelder2006.zip -chapters/%.xml: chapters/% convert.sed convert.xsl +chapters/%.xml: chapters/%.html convert.sed convert.xsl ./convert.sed $< | xsltproc --encoding utf-8 --html convert.xsl - > $@ elberfelder2006.xml: $(CHAPTERS_XML) |