diff options
author | Ian Moffett <ian@osmora.org> | 2025-09-14 15:01:34 -0400 |
---|---|---|
committer | Ian Moffett <ian@osmora.org> | 2025-09-14 15:01:34 -0400 |
commit | 1c0dfd67e7c181951f490f4e58693582f2c3871a (patch) | |
tree | 76fd404af48d6fca09d91afff450e4005bf56d49 /src/sys/arch/amd64/Makefile | |
parent | 5c5212939765f421e5bb39f93b67430f8dfab6ae (diff) |
build: Do not have per subsystem libs
Signed-off-by: Ian Moffett <ian@osmora.org>
Diffstat (limited to 'src/sys/arch/amd64/Makefile')
-rw-r--r-- | src/sys/arch/amd64/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sys/arch/amd64/Makefile b/src/sys/arch/amd64/Makefile index 6bb723b..f4f4f48 100644 --- a/src/sys/arch/amd64/Makefile +++ b/src/sys/arch/amd64/Makefile @@ -13,7 +13,7 @@ ASMOBJECTS = $(ASMFILES:.S=.S.o) DEPS = $(CFILES:.c=.d) ASMDEPS = $(ASMFILES:.S=.S.d) OBJECTS = $(CFILES:%.c=%.o) -LD_FLAGS = -Tconf/sys.ld -L../../target -lkern -lstring +LD_FLAGS = -Tconf/sys.ld -L../../target -lkern .PHONY: all all: $(OBJECTS) $(ASMOBJECTS) |