web: Don't duplicate the html header.
[osl.git] / Makefile
index bdf78a2728ab67eb4a7a6096f46132663570437f..fb8a01d3282a6fddf3a7b4866a0af198ab0dd2f6 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -29,6 +29,7 @@ MKDIR := mkdir -p
 RM := rm -f
 LN := ln
 LD := ld
+M4 := m4 -g
 OBJCOPY := objcopy
 
 # libosl's versioning consists of three numbers. Let's call them x, y and z.
@@ -109,10 +110,10 @@ $(realname): $(objects)
 errtab.h: errlist
        sed -e 's/^\([A-Z_]*\)\s*\(.*\)/OSL_ERROR(E_OSL_\1, \2)/g' $< > $@
 
-osl.h: osl.h.in errlist Makefile
+osl.h: osl.h.m4 errlist Makefile
        echo '#ifndef _OSL_H' > $@
        echo '#define _OSL_H' >> $@
-       cat osl.h.in >> $@
+       $(M4) -DOUTPUT_MODE=C gendoc.m4 $< >> $@
        echo '/** public error codes of the osl library. */' >> $@
        sed -e 's/\([A-Z_]*\)   .*/     E_OSL_\1/' \
                -e '1s/^/enum osl_errors {/1' \
@@ -125,7 +126,6 @@ clean:
 
 distclean: clean
        rm -f web/index.html web/oslfsck.1.html web/osl.png
-       rm -rf web/doxygen
 
 install-bin: $(executables)
        $(MKDIR) $(bindir)
@@ -143,22 +143,26 @@ 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
+www: web/index.html web/osl.png web/api.html
 
 .PHONY: all shared clean install install-bin install-man install-lib www
 
 web/osl.png: web/osl.pdf Makefile
        convert -scale 200x200 $< $@
 
-web/index.html: oslfsck.1 web/index.html.in INSTALL README
-       sed -e '/@README@/,$$d' web/index.html.in > $@
+web/index.html: oslfsck.1 web/header.html web/index.html.in INSTALL README QUICK_START
+       cat web/header.html > $@
+       sed -e '/@README@/,$$d' web/index.html.in >> $@
        markdown < README >> $@
        sed -e '1,/@README@/d' -e '/@INSTALL@/,$$d' web/index.html.in >> $@
        markdown < INSTALL >> $@
-       sed -e '1,/@INSTALL@/d' -e '/@MAN_PAGE@/,$$d' web/index.html.in >> $@
+       sed -e '1,/@INSTALL@/d' -e '/@QUICK_START@/,$$d' web/index.html.in >> $@
+       markdown < QUICK_START >> $@
+       sed -e '1,/@QUICK_START@/d' -e '/@MAN_PAGE@/,$$d' web/index.html.in >> $@
        groff -m man -Thtml -P -l oslfsck.1 | sed -e '1,/^<body>/d; /^<\/body>/,$$d' >> $@
        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
+web/api.html: osl.h.m4 web/header.html web/footer.html
+       cat web/header.html > $@
+       $(M4) -DOUTPUT_MODE=HTML gendoc.m4 $< >> $@
+       cat web/footer.html >> $@