]> rtime.felk.cvut.cz Git - omk.git/blobdiff - doc/Makefile
Released v0.2
[omk.git] / doc / Makefile
index c56449efc67224ffb35bf14c5f4153e660f77b28..7ba3aabe12065ab804435fc308f149013402f0db 100644 (file)
@@ -1,21 +1,30 @@
 SOURCE = omk-manual
+VERSION:=$(shell git describe|sed -e 's/^v//')
+
+.PHONY: FORCE
 
 all: $(SOURCE).pdf $(SOURCE).txt $(SOURCE).html
 
+.version: FORCE
+       echo $(VERSION) | cmp -s $@ - || echo $(VERSION) > $@
+
+%.texi: %.texinfo .version
+       sed -e 's/\$$Id\$$/$(VERSION)/g' < $< > $@
+
 PNG_FIGS = $(wildcard *.png)
 PDF_FIGS = $(patsubst %.png,%.pdf,$(PNG_FIGS))
 
 %.pdf: %.png
        convert $< -density 150 $@
 
-$(SOURCE).pdf: $(SOURCE).texinfo $(PDF_FIGS)
+%.pdf: %.texi $(PDF_FIGS)
        texi2dvi --pdf $<
        texi2dvi --pdf $<
 
-$(SOURCE).txt: $(SOURCE).texinfo
+%.txt: %.texi
        makeinfo --no-headers --force -o $@ $<
 
-$(SOURCE).html: $(SOURCE).texinfo
+%.html: %.texi
        makeinfo --html --no-split -o $@ $<
 #      texi2html --l2h $<
 # Fix texinfo HTML output
@@ -26,11 +35,11 @@ $(SOURCE).html: $(SOURCE).texinfo
 #      mv $@.tmp $@
 
 clean:
-       rm -f $(SOURCE).{aux,cp,cps,fn,ky,log,pg,toc,tp,vr,vrs} $(PDF_FIGS)
+       rm -f $(SOURCE).{aux,cp,cps,fn,ky,log,pg,toc,tp,vr,vrs} $(PDF_FIGS) .version
 
 WWW ?= www
 
-web: $(WWW) $(addprefix $(WWW)/,index.html $(SOURCE).html $(wildcard *.png) $(SOURCE).pdf)
+web: all $(WWW) $(addprefix $(WWW)/,index.html $(SOURCE).html $(wildcard *.png) $(SOURCE).pdf $(wildcard RelNotes*.txt))
 
 $(WWW):
        mkdir $@