1
0
Files
src/homepage/Makefile

20 lines
299 B
Makefile
Raw Normal View History

2022-08-31 10:05:55 -04:00
.POSIX:
2022-08-31 13:19:16 -04:00
RM = rm -f
2022-08-31 14:31:36 -04:00
generate: index.html subdirs
2022-08-31 10:05:55 -04:00
2022-12-20 23:09:18 -05:00
index.html: *.m4
2022-08-31 10:05:55 -04:00
m4 index.m4 >index.html
2022-08-31 14:31:36 -04:00
subdirs:
2022-08-31 13:19:16 -04:00
$(MAKE) -C css
$(MAKE) -C home
$(MAKE) -C phones
2022-09-13 22:02:34 -04:00
$(MAKE) -C slipstream
2022-08-31 11:02:13 -04:00
clean:
2022-11-28 22:08:39 -05:00
$(RM) index.html css/index.html home/index.html phones/index.html slipstream/index.html
2022-08-31 11:02:13 -04:00
.PHONY: generate clean