troposphere: add reboot_to_payload example homebrew

This commit is contained in:
Michael Scire
2019-01-24 09:05:06 -08:00
parent 08d1e9b880
commit e75f4e9f5a
4 changed files with 313 additions and 1 deletions

12
troposphere/Makefile Normal file
View File

@@ -0,0 +1,12 @@
APPLICATIONS := reboot_to_payload
SUBFOLDERS := $(APPLICATIONS)
TOPTARGETS := all clean
$(TOPTARGETS): $(SUBFOLDERS)
$(SUBFOLDERS):
$(MAKE) -C $@ $(MAKECMDGOALS)
.PHONY: $(TOPTARGETS) $(SUBFOLDERS)