Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(510)

Unified Diff: utility/Makefile

Issue 2835006: Remove old firmware verification code (Closed) Base URL: ssh://gitrw.chromium.org/vboot_reference.git
Patch Set: Created 10 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « tests/vboot_common3_tests.c ('k') | utility/firmware_utility.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: utility/Makefile
diff --git a/utility/Makefile b/utility/Makefile
index aef52ad41bebf1d98fe17f1e099167340f1d847e..9a05aa7c24c34c9d8230d7527a7d5924ef540637 100644
--- a/utility/Makefile
+++ b/utility/Makefile
@@ -8,14 +8,12 @@ INCLUDES += -I./include \
-I$(FWDIR)/lib/cryptolib/include \
-I$(HOSTDIR)/include \
-I../misclibs/include \
- -I../vfirmware/include\
-I../vboot_firmware/include\
-I../vkernel/include
CFLAGS += $(INCLUDES)
CFLAGS += -MMD -MF $@.d
LIBS = $(BUILD)/misclibs/file_keys.o \
$(BUILD)/misclibs/signature_digest.o \
- $(BUILD)/vfirmware/firmware_image.o \
$(BUILD)/vkernel/kernel_image.o \
$(HOSTLIB) \
$(FWLIB)
@@ -25,7 +23,6 @@ BUILD_ROOT = ${BUILD}/utility
DESTDIR ?= /usr/bin
TARGET_NAMES = dumpRSAPublicKey \
- firmware_utility \
gbb_utility \
kernel_utility \
load_kernel_test \
@@ -46,10 +43,6 @@ all: $(TARGET_BINS)
${BUILD_ROOT}/dumpRSAPublicKey: dumpRSAPublicKey.c
$(CC) $(CFLAGS) $(INCLUDES) $< -o $@ -lcrypto
-${BUILD_ROOT}/firmware_utility: firmware_utility.cc $(LIBS)
- $(CXX) $(CFLAGS) $(INCLUDES) -ggdb -D__STDC_LIMIT_MACROS $< \
- -o $@ $(LIBS) -lcrypto
-
${BUILD_ROOT}/gbb_utility: gbb_utility.cc
$(CXX) -DWITH_UTIL_MAIN $(CFLAGS) $< -o $@
« no previous file with comments | « tests/vboot_common3_tests.c ('k') | utility/firmware_utility.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698