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

Unified Diff: utility/Makefile

Issue 6334111: Slight modification to a previously-LGTM'd CL, to work with ebuild changes. (Closed) Base URL: http://git.chromium.org/git/vboot_reference.git@master
Patch Set: D'oh! Version is 1.0, not 1.1 Created 9 years, 11 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 | « firmware/version.c ('k') | utility/bmpblk_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 75b8f3d2ef37b84c0c17cca7cc784acffcf8a293..973d7855e5f4b73c0c09d9171ca7a087e5f0310e 100644
--- a/utility/Makefile
+++ b/utility/Makefile
@@ -36,6 +36,10 @@ TARGET_NAMES = dumpRSAPublicKey \
dev_debug_vboot \
pack_firmware_image
+ifeq ($(MINIMAL),)
+TARGET_NAMES += bmpblk_utility
+endif
+
TARGET_BINS = $(addprefix ${BUILD_ROOT}/,$(TARGET_NAMES))
ALL_DEPS = $(addsuffix .d,${TARGET_BINS})
@@ -50,6 +54,9 @@ ${BUILD_ROOT}/dump_kernel_config: dump_kernel_config.c $(LIBS)
${BUILD_ROOT}/gbb_utility: gbb_utility.cc
$(CXX) -DWITH_UTIL_MAIN $(CFLAGS) $< -o $@
+${BUILD_ROOT}/bmpblk_utility: bmpblk_utility.cc
+ $(CXX) -DWITH_UTIL_MAIN -lyaml $(CFLAGS) $< -o $@
+
${BUILD_ROOT}/load_kernel_test: load_kernel_test.c $(LIBS)
$(CC) $(CFLAGS) $(INCLUDES) $< -o $@ $(LIBS) -lcrypto
« no previous file with comments | « firmware/version.c ('k') | utility/bmpblk_utility.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698