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

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: 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
« no previous file with comments | « no previous file | utility/dump_fmap.c » ('j') | utility/dump_fmap.c » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: utility/Makefile
diff --git a/utility/Makefile b/utility/Makefile
index 8d370094ce603662869cfda1c5a434b6595330db..3e71cb247bfeb4495ffca1a9112ddb1be2da7719 100644
--- a/utility/Makefile
+++ b/utility/Makefile
@@ -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 fmap.c $(LIBS)
+ $(CC) $(CFLAGS) $(INCLUDES) $< fmap.c -o $@ $(LIBS) -lcrypto
Bill Richardson 2011/02/09 16:01:46 Replace "$< fmap.c" with just "$^"
Che-Liang Chiou 2011/02/10 09:11:03 Done. Move fmap.c to host/lib.
+
${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 fmap.c
+ $(CC) $(CFLAGS) $< fmap.c -o $@
Bill Richardson 2011/02/09 16:01:46 Replace "$< fmap.c" with just "$^"
Che-Liang Chiou 2011/02/10 09:11:03 Done. Move fmap.c to host/lib.
${BUILD_ROOT}/pack_firmware_image: pack_firmware_image
cp -f $< $@
« no previous file with comments | « no previous file | utility/dump_fmap.c » ('j') | utility/dump_fmap.c » ('J')

Powered by Google App Engine
This is Rietveld 408576698