8422740933
Instead of maintaining two complete Makefiles, reuse the coreboot build system rules in the stand-alone Makefile. Change-Id: I5d894a1f079799478bce0bd200ac735097f3806b Signed-off-by: Patrick Georgi <pgeorgi@google.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/59669 Reviewed-by: Angel Pons <th3fanbus@gmail.com> Reviewed-by: Paul Menzel <paulepanter@mailbox.org> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
27 lines
509 B
Makefile
27 lines
509 B
Makefile
# ifdtool - dump Intel Firmware Descriptor information
|
|
#
|
|
# SPDX-License-Identifier: GPL-2.0-only
|
|
|
|
CC ?= gcc
|
|
INSTALL = /usr/bin/env install
|
|
PREFIX = /usr/local
|
|
|
|
HOSTCC ?= $(CC)
|
|
HOSTCFLAGS ?= $(CFLAGS)
|
|
top := ../..
|
|
objutil := ..
|
|
include Makefile.inc
|
|
|
|
PROGRAM=$(objutil)/ifdtool/ifdtool
|
|
|
|
all: $(PROGRAM)
|
|
|
|
clean:
|
|
rm -f $(PROGRAM) *.o *~ .dependencies
|
|
distclean: clean
|
|
|
|
install: $(PROGRAM)
|
|
mkdir -p $(DESTDIR)$(PREFIX)/bin
|
|
$(INSTALL) $(PROGRAM) $(DESTDIR)$(PREFIX)/bin
|
|
|
|
.PHONY: all clean distclean install
|