1
0
src/homepage/Makefile
2022-09-13 22:02:34 -04:00

36 lines
527 B
Makefile

.POSIX:
RM = rm -f
generate: index.html subdirs
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
subdirs:
$(MAKE) -C css
$(MAKE) -C home
$(MAKE) -C phones
$(MAKE) -C slipstream
$(MAKE) -C software
clean:
$(RM) index.html css/index.html home/index.html phones/index.html slipstream/index.html software/index.html
.PHONY: generate clean