From ef5fa4b6837e75571d8e76bd218070199d296fce Mon Sep 17 00:00:00 2001 From: Ian Moffett Date: Sat, 13 Sep 2025 16:49:42 -0400 Subject: initial sources Signed-off-by: Ian Moffett --- src/sys/Makefile | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 src/sys/Makefile (limited to 'src/sys/Makefile') 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 -- cgit v1.2.3