27 lines
344 B
Makefile
27 lines
344 B
Makefile
.POSIX:
|
|
|
|
generate: index.html css/index.html
|
|
|
|
index.html: \
|
|
index.m4 \
|
|
announcement.m4 \
|
|
contact.m4 \
|
|
extensions.m4 \
|
|
faq.m4 \
|
|
gear.m4 \
|
|
head.m4 \
|
|
navigation.m4 \
|
|
now.m4 \
|
|
praise.m4 \
|
|
privacy.m4 \
|
|
services.m4 \
|
|
stickers.m4 \
|
|
trinitisms.m4 \
|
|
zelda.m4
|
|
m4 index.m4 >index.html
|
|
|
|
css/index.html: head.m4 css/index.m4
|
|
make -C css
|
|
|
|
.PHONY: generate
|