From: Andre Noll Date: Wed, 8 May 2024 23:12:21 +0000 (+0200) Subject: build: Move recipe for index.html to proper place. X-Git-Tag: v1.0.2~8 X-Git-Url: http://git.tue.mpg.de/?a=commitdiff_plain;h=4d9c6c9661b18e1338ea75652042ca93c2f886c7;p=dss.git build: Move recipe for index.html to proper place. There's no reason for this to be after the README stuff. --- diff --git a/Makefile b/Makefile index 3be6b21..cc1548b 100644 --- a/Makefile +++ b/Makefile @@ -132,6 +132,9 @@ $(B)/%.1: $(B)/%.suite $(B)/%.1.html: $(B)/%.1 $(call SAY, GROFF $<) $(GROFF) $< > $@ +$(B)/index.html: index.html.m4 Makefile + $(call SAY, M4 $@) + $(M4) $< > $@ clean: $(call SAY, CLEAN) $(RM) -r $(B) $(all) @@ -167,8 +170,4 @@ endef README: @printf '%s\n' "$(README)" -$(B)/index.html: index.html.m4 Makefile - $(call SAY, M4 $@) - $(M4) $< > $@ - -include Makefile.local