bios: Declare dependency on linked in .a files.
This commit is contained in:
parent
d95d561737
commit
07a9df3586
|
@ -12,8 +12,8 @@ all: bios.bin
|
||||||
|
|
||||||
bios.elf: $(BIOS_DIRECTORY)/linker.ld $(OBJECTS)
|
bios.elf: $(BIOS_DIRECTORY)/linker.ld $(OBJECTS)
|
||||||
|
|
||||||
%.elf:
|
%.elf: ../libbase/crt0-$(CPU).o ../libnet/libnet.a ../libbase/libbase-nofloat.a ../libcompiler_rt/libcompiler_rt.a
|
||||||
$(LD) $(LDFLAGS) -T $< -N -o $@ \
|
$(LD) $(LDFLAGS) -T $(BIOS_DIRECTORY)/linker.ld -N -o $@ \
|
||||||
../libbase/crt0-$(CPU).o \
|
../libbase/crt0-$(CPU).o \
|
||||||
$(OBJECTS) \
|
$(OBJECTS) \
|
||||||
-L../libnet \
|
-L../libnet \
|
||||||
|
|
Loading…
Reference in New Issue