summaryrefslogtreecommitdiff
path: root/src/sys/Makefile
diff options
context:
space:
mode:
authorIan Moffett <ian@osmora.org>2025-09-13 16:49:42 -0400
committerIan Moffett <ian@osmora.org>2025-09-13 16:49:42 -0400
commitef5fa4b6837e75571d8e76bd218070199d296fce (patch)
tree879b57314199532404e73e4dcaadd4e5e0fea345 /src/sys/Makefile
parente698061ebaf0cf1a10c11c51a6c6cd46a331959c (diff)
initial sources
Signed-off-by: Ian Moffett <ian@osmora.org>
Diffstat (limited to 'src/sys/Makefile')
-rw-r--r--src/sys/Makefile17
1 files changed, 17 insertions, 0 deletions
diff --git a/src/sys/Makefile b/src/sys/Makefile
new file mode 100644
index 0000000..52e4e20
--- /dev/null
+++ b/src/sys/Makefile
@@ -0,0 +1,17 @@
+include conf/sys.mk
+
+TARGETDIR = arch/$(TARGET)
+CC =
+LD =
+AS =
+
+.PHONY: all
+all: md
+
+.PHONY: md
+md:
+ cd $(TARGETDIR); make CC=$(CC) LD=$(LD) AS=$(AS)
+
+.PHONY: clean
+clean:
+ cd $(TARGETDIR); make clean