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

Unified Diff: utility/Makefile

Issue 6508006: Enable EFIv1 compression in bmpbklk_utility. (Closed) Base URL: http://git.chromium.org/git/vboot_reference.git@master
Patch Set: Added tests, updated copyrights, moved bmpblk_util.h as suggested. 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 | « tests/bitmaps/case_simple.yaml ('k') | utility/bmpblk_util.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 a424941de48a526c72ba6a6cd55ac4afdb286810..af0187b3cde54bc52763af2a6e65f21adefad92f 100644
--- a/utility/Makefile
+++ b/utility/Makefile
@@ -65,8 +65,16 @@ ${BUILD_ROOT}/bmpblk_utility.o: bmpblk_utility.cc
${BUILD_ROOT}/bmpblk_util.o: bmpblk_util.c
$(CC) $(CFLAGS) -c $< -o $@
+${BUILD_ROOT}/eficompress.o: eficompress.c
+ $(CC) $(CFLAGS) -c $< -o $@
+
+${BUILD_ROOT}/efidecompress.o: efidecompress.c
+ $(CC) $(CFLAGS) -c $< -o $@
+
${BUILD_ROOT}/bmpblk_utility: ${BUILD_ROOT}/bmpblk_utility.o \
- ${BUILD_ROOT}/bmpblk_util.o
+ ${BUILD_ROOT}/bmpblk_util.o \
+ ${BUILD_ROOT}/eficompress.o \
+ ${BUILD_ROOT}/efidecompress.o
$(CXX) -DWITH_UTIL_MAIN -lyaml $(CFLAGS) $^ -o $@
${BUILD_ROOT}/load_kernel_test: load_kernel_test.c $(LIBS)
« no previous file with comments | « tests/bitmaps/case_simple.yaml ('k') | utility/bmpblk_util.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698