X-Git-Url: http://www.wagner.pp.ru/gitweb/?p=fiction%2FKate-the-Empress.git;a=blobdiff_plain;f=Makefile;h=093ca3c3889174f9127e959b769ad9af9200e225;hp=3b32789cee3f5f0ee650fb2b9ecfb6af3b777f7f;hb=HEAD;hpb=b2c4b6e803dcbb86cad5d94c7c765c0308f4d07e diff --git a/Makefile b/Makefile index 3b32789..2b482bc 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,10 @@ -all: Kate-the-Empress.pdf Kate-the-Empress.html Kate-the-Empress.epub +SRC_URL=http://www.wagner.pp.ru/~vitus/fiction +UPLOAD_URL=https://www.wagner.pp.ru/dav/vitus/fiction +all: Kate-the-Empress.pdf Kate-the-Empress.html Kate-the-Empress.epub Kate-the-Empress.fb2.zip + +publish: Kate-the-Empress.pdf Kate-the-Empress.html Kate-the-Empress.epub Kate-the-Empress.fb2.zip + for i in $^; do curl -n -T $$i $(UPLOAD_URL)/$$i || exit 1;done + Kate-the-Empress.pdf: $(wildcard *.tex) pdflatex book @@ -7,13 +13,24 @@ Kate-the-Empress.pdf: $(wildcard *.tex) mv book.pdf Kate-the-Empress.pdf Kate-the-Empress.html: onefile.tex - pandoc -t html --toc --standalone -o $@ $+ + pandoc -t html --toc --standalone -o $@ $+ + +Kate-the-Empress.epub: onefile.tex epub-metadata.xml + cat epub-metadata.xml > metadata-tmp.xml + echo "`date +%Y-%m-%d`">> metadata-tmp.xml + pandoc -t epub --epub-metadata=metadata-tmp.xml --standalone -o $@ $+ + +Kate-the-Empress.fb2.zip: Kate-the-Empress.fb2 + zip Kate-the-Empress.fb2.zip Kate-the-Empress.fb2 + +Kate-the-Empress.fb2: onefile.tex Tex2fb2 fb2meta.xml + ./Tex2fb2 fb2meta.xml onefile.tex >Kate-the-Empress.fb2 -Kate-the-Empress.epub: onefile.tex - pandoc -t epub --toc --standalone -o $@ $+ +fb2lint: Kate-the-Empress.fb2 $(wildcard *.xsd) + xmllint --schema FictionBook2.1.xsd Kate-the-Empress.fb2 >/dev/null 2>$@ onefile.tex: joinfiles.awk $(wildcard *.tex) - awk -f joinfiles.awk book.tex > $@ + awk -f joinfiles.awk book.tex |sed -e 's!<>!»!g' > $@ clean: - rm -f onefile.tex book.log book.aux book.out book.toc + rm -f onefile.tex book.log book.aux book.out book.toc Kate-the-Empress.fb2 fb2lint