]> git.tuebingen.mpg.de Git - micoforia.git/commitdiff
build: Add target www. master v1.0.0
authorAndre Noll <maan@tuebingen.mpg.de>
Sun, 19 May 2024 19:23:35 +0000 (21:23 +0200)
committerAndre Noll <maan@tuebingen.mpg.de>
Mon, 24 Jun 2024 13:26:07 +0000 (15:26 +0200)
Just a simple shortcut to build the web page with m4.

Makefile

index 403fbcc27461b3e25b5ce5dd0dbbdd82e7883966..4daaec7ae0281ddf42c2aa057b81585c96cb384a 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -40,6 +40,8 @@ CHMOD := chmod
 B := build
 all := micoforia micoforia.8
 all: $(all)
+www := $(B)/index.html
+www: $(www)
 
 units := micoforia util version micoforia.lsg
 deps := $(addprefix $(B)/, $(addsuffix .d, $(units)))
@@ -147,7 +149,7 @@ install install-strip: all
        $(INSTALL_DATA) micoforia.8 $(DESTDIR)$(mandir)
 
 clean:
-       $(RM) $(B)/*.o $(all)
+       $(RM) $(B)/*.o $(all) $(www)
 distclean: clean
        $(RM) -r $(B)
 maintainer-clean:
@@ -157,5 +159,5 @@ README: README.m4 Makefile $(B)/config.mak
        @$(M4) $<
 
 .PRECIOUS: $(B)/%.lsg.c $(B)/%.lsg.h $(B)/%.8
-.PHONY: all clean install distclean maintainer-clean README
+.PHONY: all www clean install distclean maintainer-clean README
 -include Makefile.local