]> www.wagner.pp.ru Git - fiction/Hollowhills.git/blob - Makefile
added Makefile
[fiction/Hollowhills.git] / Makefile
1 SOURCES=title.txt nastya.txt sasha.txt hill.txt weekend.txt
2
3 hollowhills.html: all.txt
4         pandoc -t html --standalone -V date=`date +%x` -o $@  $+
5 hollowhills.epub: all.txt
6         pandoc -t epub -V date=`date +%x` -o $@ $+
7 all.txt: $(SOURCES) Makefile
8         cat $(SOURCES) > all.txt
9
10