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

Unified Diff: utility/Makefile

Issue 6465018: Add load_firmware_test utility program (Closed) Base URL: ssh://git@gitrw.chromium.org:9222/vboot_reference.git@master
Patch Set: Code review & remove tabs Created 9 years, 10 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 8d370094ce603662869cfda1c5a434b6595330db..c3f0a2d3c64c6f97306ce06f405a8d3d682fd923 100644
--- a/utility/Makefile
+++ b/utility/Makefile
@@ -1,4 +1,4 @@
-# Copyright (c) 2010 The Chromium OS Authors. All rights reserved.
+# Copyright (c) 2011 The Chromium OS Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
@@ -21,6 +21,7 @@ TARGET_NAMES = crossystem \
dumpRSAPublicKey \
dump_kernel_config \
gbb_utility \
+ load_firmware_test \
load_kernel_test \
pad_digest_utility \
signature_digest_utility \
@@ -62,6 +63,9 @@ ${BUILD_ROOT}/gbb_utility: gbb_utility.cc
${BUILD_ROOT}/bmpblk_utility: bmpblk_utility.cc
$(CXX) -DWITH_UTIL_MAIN -lyaml $(CFLAGS) $< -o $@
+${BUILD_ROOT}/load_firmware_test: load_firmware_test.c $(LIBS)
+ $(CC) $(CFLAGS) $(INCLUDES) $< -o $@ $(LIBS) -lcrypto
+
${BUILD_ROOT}/load_kernel_test: load_kernel_test.c $(LIBS)
$(CC) $(CFLAGS) $(INCLUDES) $< -o $@ $(LIBS) -lcrypto
@@ -112,8 +116,8 @@ ${BUILD_ROOT}/tpmc: tpmc.c $(LIBS)
${BUILD_ROOT}/dev_sign_file: dev_sign_file.c $(LIBS)
$(CC) $(CFLAGS) $(INCLUDES) $< -o $@ $(LIBS) -lcrypto
-${BUILD_ROOT}/dump_fmap: dump_fmap.c
- $(CC) $(CFLAGS) $< -o $@
+${BUILD_ROOT}/dump_fmap: dump_fmap.c $(LIBS)
+ $(CC) $(CFLAGS) $< -o $@ $(LIBS)
${BUILD_ROOT}/pack_firmware_image: pack_firmware_image
cp -f $< $@

Powered by Google App Engine
This is Rietveld 408576698