1
0

m4ify phones/

This commit is contained in:
dtb
2022-08-31 13:19:16 -04:00
parent 4433dad4f3
commit 5c794ca17b
9 changed files with 95 additions and 85 deletions

View File

@@ -1,6 +1,9 @@
.POSIX:
generate: index.html css/index.html home/index.html
MAKE = make
RM = rm -f
generate: index.html css/index.html home/index.html phones/index.html
index.html: \
index.m4 \
@@ -21,12 +24,15 @@ zelda.m4
m4 index.m4 >index.html
css/index.html: head.m4 css/index.m4
make -C css
$(MAKE) -C css
home/index.html: head.m4 home/index.m4
make -C home
$(MAKE) -C home
phones/index.html: head.m4 html.m4 phones/index.m4
$(MAKE) -C phones
clean:
rm index.html css/index.html home/index.html
$(RM) index.html css/index.html home/index.html phones/index.html
.PHONY: generate clean