diff options
| author | Ian Moffett <ian@osmora.org> | 2025-11-15 15:33:01 -0500 |
|---|---|---|
| committer | Ian Moffett <ian@osmora.org> | 2025-11-15 15:38:53 -0500 |
| commit | c7682f5cd382a7690029bf95448bed2fda8ec83a (patch) | |
| tree | 5f6a7839753d0b86258b3dea52cd3d26d439ce00 /sys/Makefile | |
| parent | 6a509d580fda4e9e78c88afa89b5747e03b7869a (diff) | |
kern: Create C kernel entrypoint
Signed-off-by: Ian Moffett <ian@osmora.org>
Diffstat (limited to 'sys/Makefile')
| -rw-r--r-- | sys/Makefile | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/sys/Makefile b/sys/Makefile index bfac75a..e345114 100644 --- a/sys/Makefile +++ b/sys/Makefile @@ -4,12 +4,16 @@ SYS_CFLAGS = ARCH = .PHONY: all -all: arch +all: kern arch .PHONY: arch arch: cd arch/$(ARCH); make CC=$(CC) LD=$(LD) SYS_CFLAGS="$(SYS_CFLAGS)" +.PHONY: kern +kern: + cd kern/; make CC=$(CC) LD=$(LD) SYS_CFLAGS="$(SYS_CFLAGS)" + .PHONY: clean clean: cd arch/$(ARCH); make clean |
