Allow for easier editing of ALL, comment out ISO build

pull/102/head
Jim Hanley 2020-01-15 14:20:23 -05:00
parent 09be174cd9
commit 0e3a9670b0
1 changed files with 18 additions and 5 deletions

View File

@ -130,11 +130,24 @@ INCDIRS += include .
# Default build target: build the most common targets and print out a
# helpfully suggestive message
#
ALL := bin/blib.a bin/ipxe.dsk bin/ipxe.lkrn bin/ipxe.iso \
bin/ipxe.usb bin/ipxe.pxe bin/undionly.kpxe bin/rtl8139.rom \
bin/8086100e.mrom bin/80861209.rom bin/10500940.rom \
bin/10222000.rom bin/10ec8139.rom bin/1af41000.rom \
bin/8086100f.mrom bin/808610d3.mrom bin/15ad07b0.rom
ALL :=
ALL += bin/blib.a
ALL += bin/ipxe.dsk
ALL += bin/ipxe.lkrn
#ALL += bin/ipxe.iso
ALL += bin/ipxe.usb
ALL += bin/ipxe.pxe
ALL += bin/undionly.kpxe
ALL += bin/rtl8139.rom
ALL += bin/8086100e.mrom
ALL += bin/80861209.rom
ALL += bin/10500940.rom
ALL += bin/10222000.rom
ALL += bin/10ec8139.rom
ALL += bin/1af41000.rom
ALL += bin/8086100f.mrom
ALL += bin/808610d3.mrom
ALL += bin/15ad07b0.rom
all : $(ALL)
@$(ECHO) '==========================================================='