diff options
| author | Ian Moffett <ian@osmora.org> | 2025-11-15 13:32:41 -0500 |
|---|---|---|
| committer | Ian Moffett <ian@osmora.org> | 2025-11-15 13:32:41 -0500 |
| commit | fa3c60da8207b724d292b7a44633872c6bfec4c8 (patch) | |
| tree | 195af6554fe5ead88cda54a8361963666c923251 /sys/Makefile | |
initial commit
Signed-off-by: Ian Moffett <ian@osmora.org>
Diffstat (limited to 'sys/Makefile')
| -rw-r--r-- | sys/Makefile | 15 |
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 |
