summaryrefslogtreecommitdiff
path: root/cesar/common/make/top.mk
diff options
context:
space:
mode:
Diffstat (limited to 'cesar/common/make/top.mk')
-rw-r--r--cesar/common/make/top.mk22
1 files changed, 22 insertions, 0 deletions
diff --git a/cesar/common/make/top.mk b/cesar/common/make/top.mk
new file mode 100644
index 0000000000..21c3260008
--- /dev/null
+++ b/cesar/common/make/top.mk
@@ -0,0 +1,22 @@
+# Compilation system top file.
+
+MAKE_DIR := $(BASE)/common/make
+TOOLS_DIR := $(BASE)/common/tools
+OBJ_DIR ?= obj$(if $(VARIANT),/$(VARIANT))
+MERGED_CONFIG := $(OBJ_DIR)/Config.merged
+
+.PHONY: all
+
+all: build.all
+
+-include $(MERGED_CONFIG)
+
+include $(MAKE_DIR)/func.mk
+include $(MAKE_DIR)/setup.mk
+include $(MAKE_DIR)/config.mk
+include $(MAKE_DIR)/default.mk
+include $(MAKE_DIR)/target.mk
+include $(MAKE_DIR)/ecos.mk
+include $(MAKE_DIR)/build.mk
+include $(MAKE_DIR)/misc.mk
+include $(MAKE_DIR)/print.mk