coreboot/payloads/nvramcui/Makefile
Arthur Heymans 1dfe9dc460 libpayload: Set reasonable arch defaults
This makes it easy to switch between x86_32 and x86_64 in payloads.

Change-Id: I3ac5f24d83dc80db924e92b53403c477e6256c44
Signed-off-by: Arthur Heymans <arthur@aheymans.xyz>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/84014
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Nico Huber <nico.h@gmx.de>
2024-08-27 09:06:58 +00:00

12 lines
182 B
Makefile

unexport $(COREBOOT_EXPORTS)
OBJS = $(obj)/nvramcui.o
TARGET = $(obj)/nvramcui.elf
all: real-all
include ../libpayload/Makefile.payload
real-all: $(TARGET)
.PHONY: all real-all