]> git.tue.mpg.de Git - dss.git/commitdiff
build: New phony target "www".
authorAndre Noll <maan@tuebingen.mpg.de>
Thu, 9 May 2024 00:12:17 +0000 (02:12 +0200)
committerAndre Noll <maan@tuebingen.mpg.de>
Tue, 2 Jul 2024 16:52:03 +0000 (18:52 +0200)
This saves some typing as the simple "make www" now builds index.html
and the html version of the man page.

Makefile

index cc1548bcf9e56b3f5b69d0f37c83181c9573356e..c06fdece8d3c39b6a985af1b2e3fbe493579f1c4 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -67,8 +67,10 @@ c_generated := $(B)/$(PACKAGE).lsg $(B)/version
 objs := $(addsuffix .o, $(c_generated) $(addprefix $(B)/, $(c_source)))
 deps := $(objs:.o=.d)
 all := $(PACKAGE) $(PACKAGE).1.gz
+www := $(B)/index.html $(B)/$(PACKAGE).1.html
 
 all: $(all)
+www: $(www)
 man: $(PACKAGE).1.gz
 $(objs): $(B)/$(PACKAGE).lsg.h Makefile
 -include $(deps)
@@ -112,7 +114,7 @@ $(B)/%.o: %.c
        $(call SAY, CC $<)
        $(CC_CMD)
 
-.PHONY: all clean install README
+.PHONY: all www clean install README
 .PRECIOUS: $(B)/%.lsg.c $(B)/%.lsg.h $(B)/%.suite $(B)/%.1
 $(B)/$(PACKAGE).suite: $(PACKAGE).suite.m4 Makefile
        $(call SAY, M4 $<)