From 4f63915dd2234060020eb5289554d8e2222adbc9 Mon Sep 17 00:00:00 2001 From: Ian Moffett Date: Wed, 8 Oct 2025 20:39:57 -0400 Subject: libc: build: Build musl-math port Signed-off-by: Ian Moffett --- src/Makefile | 1 + src/lib/libc/Makefile | 1 + 2 files changed, 2 insertions(+) diff --git a/src/Makefile b/src/Makefile index aa642f8..aacde54 100644 --- a/src/Makefile +++ b/src/Makefile @@ -78,3 +78,4 @@ clean: .PHONY: distclean distclean: make clean; rm -rf sys/target srv/root + cd lib; make clean diff --git a/src/lib/libc/Makefile b/src/lib/libc/Makefile index c69c470..b4db214 100644 --- a/src/lib/libc/Makefile +++ b/src/lib/libc/Makefile @@ -1,4 +1,5 @@ CFILES = $(shell find src/ -name "*.c") +CFILES += $(shell find/ musl-math -name "*.c") OBJ = $(shell find build/ -name "*.o") OBJ += $(CFILES:.c=.o) LIBC_OUT = libc.a -- cgit v1.2.3