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)