mirror of
https://github.com/DragonOS-Community/DragonOS.git
synced 2025-06-15 17:16:47 +00:00
13 lines
197 B
Makefile
13 lines
197 B
Makefile
|
|
CFLAGS += -I .
|
|
|
|
|
|
all: apu_boot.o smp.o
|
|
|
|
|
|
apu_boot.o: apu_boot.S
|
|
gcc -E apu_boot.S > _apu_boot.s # 预处理
|
|
as $(ASFLAGS) -o apu_boot.o _apu_boot.s
|
|
|
|
smp.o: smp.c
|
|
gcc $(CFLAGS) -c smp.c -o smp.o
|