util/ifdtool/Makefile: Derive from Makefile.inc

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>
This commit is contained in:
Patrick Georgi
2021-11-25 12:25:47 +01:00
committed by Patrick Georgi
parent 85d94740c4
commit 8422740933

View File

@@ -2,43 +2,26 @@
# #
# SPDX-License-Identifier: GPL-2.0-only # SPDX-License-Identifier: GPL-2.0-only
PROGRAM = ifdtool
CC ?= gcc CC ?= gcc
INSTALL = /usr/bin/env install INSTALL = /usr/bin/env install
PREFIX = /usr/local PREFIX = /usr/local
CFLAGS = -O2 -g -Wall -Wextra -Wmissing-prototypes -Werror
CFLAGS += -I../../src/commonlib/include -I../../src/commonlib/bsd/include
CFLAGS += -I../cbfstool/flashmap
CFLAGS += -include ../../src/commonlib/bsd/include/commonlib/bsd/compiler.h
CFLAGS += -D_DEFAULT_SOURCE # for endianness converting functions
LDFLAGS =
OBJS = ifdtool.o HOSTCC ?= $(CC)
OBJS += fmap.o HOSTCFLAGS ?= $(CFLAGS)
OBJS += kv_pair.o top := ../..
OBJS += valstr.o objutil := ..
include Makefile.inc
all: dep $(PROGRAM) PROGRAM=$(objutil)/ifdtool/ifdtool
$(PROGRAM): $(OBJS) all: $(PROGRAM)
$(CC) -o $(PROGRAM) $(OBJS) $(LDFLAGS)
clean: clean:
rm -f $(PROGRAM) *.o *~ .dependencies rm -f $(PROGRAM) *.o *~ .dependencies
distclean: clean distclean: clean
dep:
@$(CC) $(CFLAGS) -MM *.c > .dependencies
%.o: %.c
$(CC) $(CFLAGS) -c -o $@ $<
%.o: ../cbfstool/flashmap/%.c
$(CC) $(CFLAGS) -c -o $@ $<
install: $(PROGRAM) install: $(PROGRAM)
mkdir -p $(DESTDIR)$(PREFIX)/bin mkdir -p $(DESTDIR)$(PREFIX)/bin
$(INSTALL) $(PROGRAM) $(DESTDIR)$(PREFIX)/bin $(INSTALL) $(PROGRAM) $(DESTDIR)$(PREFIX)/bin
.PHONY: all clean distclean dep .PHONY: all clean distclean install