diff options
author | Ian Moffett <ian@osmora.org> | 2025-09-13 20:10:17 -0400 |
---|---|---|
committer | Ian Moffett <ian@osmora.org> | 2025-09-13 20:10:17 -0400 |
commit | 47ab28465a0d69e9ac973b7485ac447a0f565d8e (patch) | |
tree | d5dc7a87645533bccb85f8c86749e3e325e5c7f8 /src/sys/Makefile | |
parent | 15dfcd84a1330d9b53bd84db38c917c79412836d (diff) |
project: 'kern' -> 'os'
Signed-off-by: Ian Moffett <ian@osmora.org>
Diffstat (limited to 'src/sys/Makefile')
-rw-r--r-- | src/sys/Makefile | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/sys/Makefile b/src/sys/Makefile index 6e1cc74..fdd9c54 100644 --- a/src/sys/Makefile +++ b/src/sys/Makefile @@ -6,11 +6,11 @@ LD = AS = .PHONY: all -all: kern md +all: os md -.PHONY: kern -kern: - cd kern; make CC=$(CC) LD=$(LD) AS=$(AS) TARGETDIR=$(TARGETDIR) +.PHONY: os +os: + cd os; make CC=$(CC) LD=$(LD) AS=$(AS) TARGETDIR=$(TARGETDIR) .PHONY: md md: @@ -19,4 +19,4 @@ md: .PHONY: clean clean: cd $(TARGETDIR); make clean - cd kern; make clean + cd os; make clean |