mirror of
https://github.com/Atmosphere-NX/Atmosphere.git
synced 2024-11-06 04:01:44 +00:00
13 lines
204 B
Makefile
13 lines
204 B
Makefile
|
APPLICATIONS := reboot_to_payload
|
||
|
|
||
|
SUBFOLDERS := $(APPLICATIONS)
|
||
|
|
||
|
TOPTARGETS := all clean
|
||
|
|
||
|
$(TOPTARGETS): $(SUBFOLDERS)
|
||
|
|
||
|
$(SUBFOLDERS):
|
||
|
$(MAKE) -C $@ $(MAKECMDGOALS)
|
||
|
|
||
|
.PHONY: $(TOPTARGETS) $(SUBFOLDERS)
|