Atmosphere/Makefile

12 lines
240 B
Makefile

SUBFOLDERS := exosphere fusee stratosphere thermosphere
TOPTARGETS := all clean
$(TOPTARGETS): $(SUBFOLDERS)
$(SUBFOLDERS):
$(MAKE) -C $@ $(MAKECMDGOALS)
fusee: exosphere thermosphere stratosphere
.PHONY: $(TOPTARGETS) $(SUBFOLDERS)