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

Unified Diff: utility/Makefile

Issue 2815011: Remove unused files, and tidy the directory structure of the remaining ones. (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/test_common.c ('k') | utility/include/firmware_utility.h » ('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 9fa7aacc3192f14e46d8e974503911a59fe3baad..2f68649219a337d3c1378a1800ef1f7713f26d4b 100644
--- a/utility/Makefile
+++ b/utility/Makefile
@@ -6,19 +6,10 @@ INCLUDES += -I./include \
-I$(FWDIR)/lib/include \
-I$(FWDIR)/lib/cgptlib/include \
-I$(FWDIR)/lib/cryptolib/include \
- -I$(HOSTDIR)/include \
- -I../misclibs/include \
- -I../vboot_firmware/include\
- -I../vkernel/include
+ -I$(HOSTDIR)/include
CFLAGS += $(INCLUDES)
CFLAGS += -MMD -MF $@.d
-LIBS = $(BUILD)/misclibs/file_keys.o \
- $(BUILD)/misclibs/signature_digest.o \
- $(BUILD)/vkernel/kernel_image.o \
- $(BUILD)/vkernel/kernel_image_fw.o \
- $(BUILD)/vkernel/load_kernel_fw.o \
- $(HOSTLIB) \
- $(FWLIB)
+LIBS = $(HOSTLIB) $(FWLIB)
BUILD_ROOT = ${BUILD}/utility
@@ -26,10 +17,7 @@ DESTDIR ?= /usr/bin
TARGET_NAMES = dumpRSAPublicKey \
gbb_utility \
- kernel_utility \
load_kernel_test \
- load_kernel_test_old \
- sign_image \
signature_digest_utility \
vbutil_firmware \
vbutil_kernel \
@@ -51,13 +39,6 @@ ${BUILD_ROOT}/gbb_utility: gbb_utility.cc
${BUILD_ROOT}/load_kernel_test: load_kernel_test.c $(LIBS)
$(CC) $(CFLAGS) $(INCLUDES) $< -o $@ $(LIBS) -lcrypto
-${BUILD_ROOT}/load_kernel_test_old: load_kernel_test_old.c $(LIBS)
- $(CC) $(CFLAGS) $(INCLUDES) $< -o $@ $(LIBS) -lcrypto
-
-${BUILD_ROOT}/kernel_utility: kernel_utility.cc $(LIBS)
- $(CXX) $(CFLAGS) $(INCLUDES) -ggdb -D__STDC_LIMIT_MACROS $< \
- -o $@ $(LIBS) -lcrypto
-
${BUILD_ROOT}/signature_digest_utility: signature_digest_utility.c $(LIBS)
$(CC) $(CFLAGS) $(INCLUDES) $< -o $@ $(LIBS) -lcrypto
« no previous file with comments | « tests/test_common.c ('k') | utility/include/firmware_utility.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698