david/ipxe
david
/
ipxe
Archived
1
0
Fork 0

Add rule to generate 16-bit version of decompressor

This commit is contained in:
Michael Brown 2005-03-09 14:04:04 +00:00
parent 7700b8059c
commit 8bd447ad1b
1 changed files with 5 additions and 2 deletions

View File

@ -184,6 +184,9 @@ $(BIN)/%.o: arch/i386/firmware/pcbios/%.S $(MAKEDEPS)
$(BIN)/%.o: arch/i386/prefix/%.S $(MAKEDEPS)
$(CPP) $(CFLAGS) -Ui386 -DASSEMBLY $< | $(AS) $(ASFLAGS) -o $@
$(BIN)/%16.o: arch/i386/prefix/%.S $(MAKEDEPS)
$(CPP) $(CFLAGS) -Ui386 -DASSEMBLY -DCODE16 $< | $(AS) $(ASFLAGS) -o $@
# general rule for 16bit .o, may be overridden
$(BIN)/%.o: $(BIN)/%.s
$(AS) $(ASFLAGS) -o $@ $<