]> www.wagner.pp.ru Git - fiction/Kate-the-Empress.git/blobdiff - Makefile
Typo fixes
[fiction/Kate-the-Empress.git] / Makefile
index c6aa90e0af2fcfa86b3995c841450e839308b002..b479d1a33875a1ab16495fe61fb304c2095fb7d6 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -9,16 +9,22 @@ Kate-the-Empress.pdf: $(wildcard *.tex)
 Kate-the-Empress.html: onefile.tex
        pandoc  -t html  --toc  --standalone -o $@ $+
 
-Kate-the-Empress.epub: onefile.tex
-       pandoc  -t epub --standalone -o $@ $+
+Kate-the-Empress.epub: onefile.tex epub-metadata.xml
+       cat epub-metadata.xml > metadata-tmp.xml
+       echo "<dc:date>`date +%Y-%m-%d`</dc:date>">> metadata-tmp.xml
+       pandoc  -t epub --epub-metadata=metadata-tmp.xml --standalone -o $@ $+
 
-Kate-the-Empress.fb2.zip: onefile.zip
-       ./Tex2fb2 fb2meta.xml onefile.tex >Kate-the-Empress.fb2
+Kate-the-Empress.fb2.zip: Kate-the-Empress.fb2
        zip Kate-the-Empress.fb2.zip Kate-the-Empress.fb2
-       rm Kate-the-Empress.fb2
+
+Kate-the-Empress.fb2: onefile.tex Tex2fb2 fb2meta.xml
+       ./Tex2fb2 fb2meta.xml onefile.tex >Kate-the-Empress.fb2
+
+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 >  $@
 
 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