From f44fdaab3cc0b74d4cf8e08c4e4a6e95b91a84c3 Mon Sep 17 00:00:00 2001 From: dgtlrift Date: Mon, 2 May 2022 14:00:17 -0400 Subject: [PATCH] Update Makefile Remove change to ALL per @stappersg recommendation via https://github.com/ipxe/ipxe/pull/102#discussion_r449902455 and I will make this a separate patch. --- src/Makefile | 23 +++++------------------ 1 file changed, 5 insertions(+), 18 deletions(-) diff --git a/src/Makefile b/src/Makefile index 9ea300a5f..df3d8063c 100644 --- a/src/Makefile +++ b/src/Makefile @@ -131,24 +131,11 @@ INCDIRS += include . # Default build target: build the most common targets and print out a # helpfully suggestive message # -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 := 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) @$(ECHO) '==========================================================='