rust/doc/Makefile

22 lines
495 B
Makefile
Raw Normal View History

2010-07-04 06:48:31 +02:00
DOC_VER := $(shell date +"%Y-%m-%d")-snap
2010-06-16 23:30:45 +02:00
all: rust.pdf rust.html
version.texi: Makefile
git log -1 \
--format='@macro gitversion%n%h %ci%n@end macro%n' >$@
%.pdf: %.texi version.texi
2010-06-16 23:30:45 +02:00
texi2pdf $<
%.html: %.texi version.texi
2010-06-24 06:03:09 +02:00
makeinfo --html --ifhtml --force --no-split --output=$@ $<
2010-06-16 23:30:45 +02:00
2010-07-04 06:48:31 +02:00
snap: rust.pdf
mv $< rust-$(DOC_VER).pdf
2010-06-16 23:30:45 +02:00
clean:
2010-06-24 06:03:09 +02:00
rm -f rust.aux rust.cp rust.fn rust.ky rust.log rust.pdf \
2010-07-05 00:39:53 +02:00
rust.html rust.pg rust.toc rust.tp rust.vr rust.cps \
version.texi