summaryrefslogtreecommitdiff
path: root/atos/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'atos/Makefile')
-rw-r--r--atos/Makefile15
1 files changed, 15 insertions, 0 deletions
diff --git a/atos/Makefile b/atos/Makefile
new file mode 100644
index 0000000..eea25c3
--- /dev/null
+++ b/atos/Makefile
@@ -0,0 +1,15 @@
+#
+# Copyright (c) 2026, Apollo Telephone Laboratories.
+# Provided under the BSD-3 clause.
+#
+
+.PHONY: all
+all: boot
+
+.PHONY: boot
+boot: machine
+ cd boot/$(CONFIG_ARCH)/$(CONFIG_CHIP); $(MAKE)
+
+.PHONY: machine
+machine:
+ cd arch/$(CONFIG_ARCH)/$(CONFIG_CHIP); $(MAKE)