]> www.wagner.pp.ru Git - fiction/Hollowhills.git/blob - Makefile
соблазнение сержанта
[fiction/Hollowhills.git] / Makefile
1
2 # Here should be included all the source files (markdown +pandoc
3 # extensions) in order as they should appear in the text
4 #
5 SOURCES=title.txt nastya.txt sasha.txt hill.txt weekend.txt
6
7 all: hollowhills.html hollowhills.epub
8
9 hollowhills.html: all.txt
10         pandoc -t html --standalone -V date=`date +%x` -o $@  $+
11 hollowhills.epub: all.txt
12         pandoc -t epub -V date=`date +%x` -o $@ $+
13 all.txt: $(SOURCES) Makefile
14         cat $(SOURCES) > all.txt
15
16