libgoatvr
annotate doc/Makefile @ 28:5136dfcea7b1
ported to OVR 0.5.0.1
author | John Tsiombikas <nuclear@member.fsf.org> |
---|---|
date | Mon, 06 Apr 2015 05:17:11 +0300 |
parents | |
children |
rev | line source |
---|---|
nuclear@25 | 1 rstfiles = $(wildcard *.rst) |
nuclear@25 | 2 htmlfiles = $(rstfiles:.rst=.html) |
nuclear@25 | 3 |
nuclear@25 | 4 .PHONY: html |
nuclear@25 | 5 html: $(htmlfiles) |
nuclear@25 | 6 |
nuclear@25 | 7 %.html: %.rst |
nuclear@25 | 8 rst2html $(RSTFLAGS) $< >$@ |
nuclear@25 | 9 |
nuclear@25 | 10 .PHONY: clean |
nuclear@25 | 11 clean: |
nuclear@25 | 12 rm -f $(htmlfiles) |