diff --git a/Makefile b/Makefile index 6eb59de..8225e46 100644 --- a/Makefile +++ b/Makefile @@ -32,9 +32,9 @@ fd.iso: kernel #https://gcc.gnu.org/onlinedocs/gcc/x86-Function-Attributes.html#x86-Function-Attributes core/exception_handler.o:core/exception_handler.c - $(CC) $(CPPFLAGS) $(CFLAGS) -mgeneral-regs-only -c $< -o $@ + $(CC) $(CFLAGS) $(CPPFLAGS) -mgeneral-regs-only -c $< -o $@ core/irq_handler.o:core/irq_handler.c - $(CC) $(CPPFLAGS) $(CFLAGS) -mgeneral-regs-only -c $< -o $@ + $(CC) $(CFLAGS) $(CPPFLAGS) -mgeneral-regs-only -c $< -o $@ %.o:%.asm $(AS) $(ASFLAGS) -o $@ $<