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

Unified Diff: utility/Makefile

Issue 6307007: Implement bmpblk_utility tool that creates bmp block from image files. (Closed) Base URL: http://git.chromium.org/git/vboot_reference.git@master
Patch Set: rename config file 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
Index: utility/Makefile
diff --git a/utility/Makefile b/utility/Makefile
index 75b8f3d2ef37b84c0c17cca7cc784acffcf8a293..4f07aad9985dbbd485d50adcfcbcdc9df1b7e54e 100644
--- a/utility/Makefile
+++ b/utility/Makefile
@@ -20,6 +20,7 @@ DESTDIR ?= /usr/bin
TARGET_NAMES = dumpRSAPublicKey \
dump_kernel_config \
gbb_utility \
+ bmpblk_utility \
load_kernel_test \
signature_digest_utility \
tlcl_generator \
@@ -50,6 +51,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

Powered by Google App Engine
This is Rietveld 408576698