# # Here should be included all the source files (markdown +pandoc # extensions) in order as they should appear in the text # SOURCES=title.txt nastya.txt sasha.txt hill.txt weekend.txt all: hollowhills.html hollowhills.epub hollowhills.html: all.txt pandoc -t html --standalone -V date=`date +%x` -o $@ $+ hollowhills.epub: all.txt pandoc -t epub -V date=`date +%x` -o $@ $+ all.txt: $(SOURCES) Makefile cat $(SOURCES) > all.txt