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

Unified Diff: utility/Makefile

Issue 2811029: utility: add a simple tool for dumping the kernel config (Closed) Base URL: ssh://git@gitrw.chromium.org//vboot_reference.git
Patch Set: clean up offsets 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 | « no previous file | utility/dump_kernel_config.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 2f68649219a337d3c1378a1800ef1f7713f26d4b..cc3f5513f2deb61127a8a7c9bca613b88194a55b 100644
--- a/utility/Makefile
+++ b/utility/Makefile
@@ -16,6 +16,7 @@ BUILD_ROOT = ${BUILD}/utility
DESTDIR ?= /usr/bin
TARGET_NAMES = dumpRSAPublicKey \
+ dump_kernel_config \
gbb_utility \
load_kernel_test \
signature_digest_utility \
@@ -33,6 +34,9 @@ all: $(TARGET_BINS)
${BUILD_ROOT}/dumpRSAPublicKey: dumpRSAPublicKey.c
$(CC) $(CFLAGS) $(INCLUDES) $< -o $@ -lcrypto
+${BUILD_ROOT}/dump_kernel_config: dump_kernel_config.c $(LIBS)
+ $(CC) $(CFLAGS) $(INCLUDES) $< -o $@ $(LIBS) -lcrypto
+
${BUILD_ROOT}/gbb_utility: gbb_utility.cc
$(CXX) -DWITH_UTIL_MAIN $(CFLAGS) $< -o $@
« no previous file with comments | « no previous file | utility/dump_kernel_config.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698