The introduction of the buffer and cbfs_image api also brought in some regressions, such as broken architecture detection, that went undetected. This patch prepares cbfstool for a fix. - There has been a significant amount of dead code that went undetected. Remove it! - Fix a few shadowed variables - Compile cbfstool with more warnings BRANCH=none TEST=build and boot coreboot on peach_pit and beltino BUG=none Change-Id: Ib6d02abd3ea404ec1e90f2acab6d7c67cac19220 Signed-off-by: Stefan Reinauer <reinauer@google.com> Reviewed-on: https://chromium-review.googlesource.com/176710 Reviewed-by: Aaron Durbin <adurbin@chromium.org> Reviewed-by: Hung-Te Lin <hungte@chromium.org>
39 lines
854 B
Makefile
39 lines
854 B
Makefile
obj ?= $(shell pwd)
|
|
|
|
HOSTCC ?= gcc
|
|
CFLAGS ?= -g
|
|
CFLAGS += -D_7ZIP_ST
|
|
CFLAGS += -Wall -Wundef -Wstrict-prototypes -Wmissing-prototypes
|
|
CFLAGS += -Wwrite-strings -Wredundant-decls -Wno-trigraphs
|
|
CFLAGS += -Wstrict-aliasing -Wshadow -Werror
|
|
|
|
BINARY:=$(obj)/cbfstool
|
|
|
|
COMMON:=cbfstool.o common.o cbfs_image.o compress.o fit.o
|
|
COMMON+=cbfs-mkstage.o cbfs-mkpayload.o
|
|
# LZMA
|
|
COMMON+=lzma/lzma.o
|
|
COMMON+=lzma/C/LzFind.o lzma/C/LzmaDec.o lzma/C/LzmaEnc.o
|
|
|
|
COMMON:=$(addprefix $(obj)/,$(COMMON))
|
|
|
|
all: dep $(BINARY)
|
|
|
|
$(obj)/%.o: %.c
|
|
$(HOSTCC) $(CFLAGS) -c -o $@ $<
|
|
|
|
clean:
|
|
rm -f $(COMMON) $(BINARY)
|
|
|
|
tags:
|
|
ctags *.[ch]
|
|
|
|
$(obj)/cbfstool:$(COMMON)
|
|
$(HOSTCC) $(CFLAGS) -o $@ $^
|
|
|
|
dep:
|
|
@$(HOSTCC) $(CFLAGS) -MM *.c > .dependencies
|
|
@$(HOSTCC) $(CFLAGS) -MM lzma/*.c >> .dependencies
|
|
@$(HOSTCC) $(CFLAGS) -MM lzma/C/*.c >> .dependencies
|
|
|
|
-include .dependencies
|