X-Git-Url: http://www.wagner.pp.ru/gitweb/?a=blobdiff_plain;ds=sidebyside;f=Makefile;fp=Makefile;h=b779f25855c50623a6098516a39c7362b8db761c;hb=c6d9ec93240ed3422b9e4dd45472dc3d526a575d;hp=0000000000000000000000000000000000000000;hpb=a7a0eadc6dd2bdc86ae9f1f5484ee4375c4457cb;p=fiction%2FHollowhills.git diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..b779f25 --- /dev/null +++ b/Makefile @@ -0,0 +1,10 @@ +SOURCES=title.txt nastya.txt sasha.txt hill.txt weekend.txt + +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 + +