just a small reminder

This commit is contained in:
2025-05-30 09:50:03 -04:00
parent 7dedc0019b
commit 72bab4a548

View File

@ -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)