diff options
author | Ian Moffett <ian@osmora.org> | 2025-09-13 16:49:42 -0400 |
---|---|---|
committer | Ian Moffett <ian@osmora.org> | 2025-09-13 16:49:42 -0400 |
commit | ef5fa4b6837e75571d8e76bd218070199d296fce (patch) | |
tree | 879b57314199532404e73e4dcaadd4e5e0fea345 /src/sys/Makefile | |
parent | e698061ebaf0cf1a10c11c51a6c6cd46a331959c (diff) |
initial sources
Signed-off-by: Ian Moffett <ian@osmora.org>
Diffstat (limited to 'src/sys/Makefile')
-rw-r--r-- | src/sys/Makefile | 17 |
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 |