From: Andre Noll Date: Sat, 9 Aug 2014 13:21:50 +0000 (+0200) Subject: Add make target www. X-Git-Tag: v0.1.3~9 X-Git-Url: http://git.tuebingen.mpg.de/?p=osl.git;a=commitdiff_plain;h=100dd77158c9e9b3dc681ca6f440d351b1e3640a Add make target www. The new target allows to update the web page with "make www", followed by a suitable command to copy the "web" directory to the server. That's as easy as it gets. --- diff --git a/Makefile b/Makefile index 09ad34b..7a5846a 100644 --- a/Makefile +++ b/Makefile @@ -195,8 +195,9 @@ install-lib: $(realname) $(headers) $(INSTALL) -m 644 $(headers) $(includedir) install: all install-bin install-man install-lib +www: web/index.html web/osl.png web/doxygen/index.html -.PHONY: all shared clean install install-bin install-man install-lib +.PHONY: all shared clean install install-bin install-man install-lib www web/%.1.html: %.1 man2html $< > $@ @@ -212,3 +213,7 @@ web/index.html: web/oslfsck.1.html web/index.html.in INSTALL README sed -e '1,/@INSTALL@/d' -e '/@MAN_PAGE@/,$$d' web/index.html.in >> $@ sed -e '1,/Return to Main Contents/d' -e '/Index/,$$d' web/oslfsck.1.html >> $@ sed -e '1,/@MAN_PAGE@/d' web/index.html.in >> $@ + +web/doxygen/index.html: $(wildcard *.c *.h) web/Doxyfile web/header.html \ + web/footer.html + doxygen web/Doxyfile