diff options
author | Ian Moffett <ian@osmora.org> | 2025-09-13 23:25:57 -0400 |
---|---|---|
committer | Ian Moffett <ian@osmora.org> | 2025-09-13 23:25:57 -0400 |
commit | ed8fac66ad0f2e3f1a07dae555ad6b0016573738 (patch) | |
tree | cd058e669472de6d8bf154acdf562f2855b9a775 /src/sys/Makefile | |
parent | 1e5ff2f9b76639321b6ea165cb3508dc47135144 (diff) |
build: Link with kernel libstring
Signed-off-by: Ian Moffett <ian@osmora.org>
Diffstat (limited to 'src/sys/Makefile')
-rw-r--r-- | src/sys/Makefile | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/sys/Makefile b/src/sys/Makefile index fdd9c54..6cdf604 100644 --- a/src/sys/Makefile +++ b/src/sys/Makefile @@ -6,12 +6,16 @@ LD = AS = .PHONY: all -all: os md +all: os lib md .PHONY: os os: cd os; make CC=$(CC) LD=$(LD) AS=$(AS) TARGETDIR=$(TARGETDIR) +.PHONY: lib +lib: + cd lib; make CC=$(CC) LD=$(LD) AS=$(AS) TARGETDIR=$(TARGETDIR) + .PHONY: md md: cd $(TARGETDIR); make CC=$(CC) LD=$(LD) AS=$(AS) |