src/be/Makefile

13 lines
183 B
Makefile

RM = rm -f
TARGETS = game/index.html linux/index.html unix/index.html
all: $(TARGETS)
clean:
$(RM) $(TARGETS)
%/index.html: %/*.m4
$(MAKE) -C $* -f ../page.mk
.PHONY: all clean