From a53abd699c87fc67672d30ea3a9948daf1b832dc Mon Sep 17 00:00:00 2001 From: Naomi Peori Date: Mon, 23 Apr 2018 14:53:57 -0300 Subject: [PATCH] Added top-level makefile and a .gitignore for thermosphere build files. --- Makefile | 10 ++++++++++ thermosphere/.gitignore | 1 + 2 files changed, 11 insertions(+) create mode 100644 Makefile create mode 100644 thermosphere/.gitignore diff --git a/Makefile b/Makefile new file mode 100644 index 000000000..54ea31ca7 --- /dev/null +++ b/Makefile @@ -0,0 +1,10 @@ +SUBFOLDERS := exosphere fusee/fusee-primary fusee/fusee-secondary stratosphere/libstratosphere thermosphere + +TOPTARGETS := all clean + +$(TOPTARGETS): $(SUBFOLDERS) + +$(SUBFOLDERS): + $(MAKE) -C $@ $(MAKECMDGOALS) + +.PHONY: $(TOPTARGETS) $(SUBFOLDERS) diff --git a/thermosphere/.gitignore b/thermosphere/.gitignore new file mode 100644 index 000000000..1fcb1529f --- /dev/null +++ b/thermosphere/.gitignore @@ -0,0 +1 @@ +out