diff --git a/kernel/src/smp/Makefile b/kernel/src/smp/Makefile index ab9c7b33..3eb62a85 100644 --- a/kernel/src/smp/Makefile +++ b/kernel/src/smp/Makefile @@ -7,7 +7,7 @@ all: apu_boot.o smp.o apu_boot.o: apu_boot.S $(CC) -E apu_boot.S > _apu_boot.s # 预处理 - as $(ASFLAGS) -o apu_boot.o _apu_boot.s + $(AS) $(ASFLAGS) -o apu_boot.o _apu_boot.s smp.o: smp.c - $(CC) $(CFLAGS) -c smp.c -o smp.o \ No newline at end of file + $(CC) $(CFLAGS) -c smp.c -o smp.o