summaryrefslogtreecommitdiff
path: root/sys/Makefile
diff options
context:
space:
mode:
authorIan Moffett <ian@osmora.org>2025-11-15 13:32:41 -0500
committerIan Moffett <ian@osmora.org>2025-11-15 13:32:41 -0500
commitfa3c60da8207b724d292b7a44633872c6bfec4c8 (patch)
tree195af6554fe5ead88cda54a8361963666c923251 /sys/Makefile
initial commit
Signed-off-by: Ian Moffett <ian@osmora.org>
Diffstat (limited to 'sys/Makefile')
-rw-r--r--sys/Makefile15
1 files changed, 15 insertions, 0 deletions
diff --git a/sys/Makefile b/sys/Makefile
new file mode 100644
index 0000000..bfac75a
--- /dev/null
+++ b/sys/Makefile
@@ -0,0 +1,15 @@
+CC =
+LD =
+SYS_CFLAGS =
+ARCH =
+
+.PHONY: all
+all: arch
+
+.PHONY: arch
+arch:
+ cd arch/$(ARCH); make CC=$(CC) LD=$(LD) SYS_CFLAGS="$(SYS_CFLAGS)"
+
+.PHONY: clean
+clean:
+ cd arch/$(ARCH); make clean