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

Unified Diff: utility/Makefile

Issue 2762009: Add vbutil_key (Closed) Base URL: ssh://gitrw.chromium.org/vboot_reference.git
Patch Set: Util to pack/unpack .vbpubk files 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/load_kernel_test.c » ('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 1f50aebd83e5b09fdc74e3f969cc2276e9f935dd..e6b1bc0e697124bcaa4e5991ebb8f84618bb9c91 100644
--- a/utility/Makefile
+++ b/utility/Makefile
@@ -20,8 +20,8 @@ LIBS = $(TOP)/misclibs/file_keys.o \
$(TOP)/misclibs/signature_digest.o \
$(TOP)/vfirmware/firmware_image.o \
$(TOP)/vkernel/kernel_image.o \
- $(FWLIB) \
- $(HOSTLIB)
+ $(HOSTLIB) \
+ $(FWLIB)
SUBDIRS = cgpt
DESTDIR ?= /opt/bin
@@ -32,6 +32,7 @@ TARGET_BINS = dumpRSAPublicKey \
kernel_utility \
load_kernel_test \
signature_digest_utility \
+ vbutil_key \
verify_data
all: $(TARGET_BINS) subdirs
@@ -66,6 +67,9 @@ load_kernel_test: load_kernel_test.c $(LIBS)
signature_digest_utility: signature_digest_utility.c $(LIBS)
$(CC) $(CFLAGS) $(INCLUDES) $< -o $@ $(LIBS) -lcrypto
+vbutil_key: vbutil_key.c $(LIBS)
+ $(CC) $(CFLAGS) $(INCLUDES) $< -o $@ $(LIBS) -lcrypto
+
verify_data: verify_data.c $(LIBS)
$(CC) $(CFLAGS) $(INCLUDES) $< -o $@ $(LIBS) -lcrypto
« no previous file with comments | « tests/vboot_common3_tests.c ('k') | utility/load_kernel_test.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698