]> git.tuebingen.mpg.de Git - adu.git/blobdiff - Makefile
Add targets %.ppm and %.png.
[adu.git] / Makefile
index 187dd886894a7dbeba5e3fa19b0a5749e517dfae..ce55831a23a887fbb2fb7dd0c5409537fa30ecb2 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -40,6 +40,11 @@ cmdline.c cmdline.h: adu.ggo
 %.o: %.c Makefile
        $(CC) -c $(CPPFLAGS) $(DEBUG_CPPFLAGS) $<
 
+%.ppm: %.sk
+       sk2ppm $< > $@
+%.png: %.ppm
+       convert $< $@
+
 select.cmdline.c select.cmdline.h: select.ggo
        gengetopt --set-package=select \
                --no-handle-help \
@@ -52,5 +57,20 @@ select.cmdline.c select.cmdline.h: select.ggo
 select.cmdline.o: select.cmdline.c select.cmdline.h
        $(CC) -c $(CPPFLAGS) $<
 
+adu.1: adu adu.1.inc
+       help2man -h --detailed-help --include adu.1.inc -N ./$< > $@
+
+%.1.html: %.1
+       man2html $< | sed -e 's|^<DT><DD>$$|<DT><DD><br>|g' > $@
+
 clean:
        rm -f *.o adu *cmdline.c *cmdline.h
+
+index.html: adu.1.html index.html.in INSTALL README
+       sed -e '/@README@/,$$d' index.html.in > $@
+       grutatxt -nb < README >> $@
+       sed -e '1,/@README@/d' -e '/@INSTALL@/,$$d' index.html.in >> $@
+       grutatxt -nb < INSTALL >> $@
+       sed -e '1,/@INSTALL@/d' -e '/@MAN_PAGE@/,$$d' index.html.in >> $@
+       sed -e '1,/Return to Main Contents/d' -e '/Index/,$$d' adu.1.html >> $@
+       sed -e '1,/@MAN_PAGE@/d' index.html.in >> $@