libgoatvr

view doc/Makefile @ 25:bb85be761b50

started the documentation
author John Tsiombikas <nuclear@member.fsf.org>
date Sun, 08 Mar 2015 05:30:02 +0200
parents
children
line source
1 rstfiles = $(wildcard *.rst)
2 htmlfiles = $(rstfiles:.rst=.html)
4 .PHONY: html
5 html: $(htmlfiles)
7 %.html: %.rst
8 rst2html $(RSTFLAGS) $< >$@
10 .PHONY: clean
11 clean:
12 rm -f $(htmlfiles)