From 72bab4a548849d7c8eee9a314a91464b26cc60a9 Mon Sep 17 00:00:00 2001 From: Nathan Singer Date: Fri, 30 May 2025 09:50:03 -0400 Subject: [PATCH] just a small reminder --- Makefile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 05fa6ca..a4cd1ae 100644 --- a/Makefile +++ b/Makefile @@ -46,7 +46,9 @@ os.iso: kernel.elf run: os.iso bochs -f util/bochsrc.txt -q -libc.a: CFLAGS:=$(CFLAGS) -D__is_libc # Target rule to define __is_libc +#TODO: when i inevitably do add libc, this is going to fail because they have the same name as the libk objects +#TODO: so we'll need to do a batch rename on one of the two object files, +libc.a: CFLAGS:=$(CFLAGS) -D__is_libc # Target rule to define __is_libc libc.a: $(libc_objs) $(AR) rcs $@ $(libc_objs)