From 54fea2f2a3ee0e6b027cd8be0a8a5a89872a8633 Mon Sep 17 00:00:00 2001 From: Thomas Voss Date: Sun, 30 Jul 2023 04:28:43 +0200 Subject: Try out using m4 for footers --- Makefile | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index da2a9b6..b670d3d 100644 --- a/Makefile +++ b/Makefile @@ -1,9 +1,10 @@ .PHONY: check clean serve -srcdirs := ${shell find src -type d} -outdirs := ${srcdirs:src%=out%} -sources := ${shell find src -type f -name 'index.html' -or -name '*.css' -or -name '*.svg'} -outputs := ${sources:src/%=out/%} +includes := ${wildcard include/*} +srcdirs := ${shell find src -type d} +outdirs := ${srcdirs:src%=out%} +sources := ${shell find src -type f -name 'index.html' -or -name '*.css' -or -name '*.svg'} +outputs := ${sources:src/%=out/%} all: ${outdirs} ${outputs} @@ -15,8 +16,8 @@ out/%: src/% @cp $< $@ @printf 'CP\t%s\n' "$@" -out/%.html: src/%.html include/head.html - @m4 -P ${foreach dir,${^D},-I${dir}} $< >$@ +out/%.html: src/%.html ${includes} + @m4 -P ${foreach dir,${^D},-I${dir}} include/lib.m4 $< >$@ @printf 'M4\t%s\n' "$@" src/srp/fw-ec/index.html: src/srp/fw-ec/led.diff.html -- cgit v1.2.3