1
0
Fork 0
mirror of https://github.com/Atmosphere-NX/Atmosphere.git synced 2024-09-19 13:33:24 +01:00
Atmosphere/troposphere/Makefile
2019-01-24 09:05:06 -08:00

13 lines
204 B
Makefile

APPLICATIONS := reboot_to_payload
SUBFOLDERS := $(APPLICATIONS)
TOPTARGETS := all clean
$(TOPTARGETS): $(SUBFOLDERS)
$(SUBFOLDERS):
$(MAKE) -C $@ $(MAKECMDGOALS)
.PHONY: $(TOPTARGETS) $(SUBFOLDERS)