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

Unified Diff: src/platform/vboot_reference/utility/Makefile

Issue 2225008: Add install target to put utilities into chroot (in /opt/bin/) (Closed) Base URL: ssh://git@chromiumos-git/chromeos
Patch Set: Created 10 years, 7 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 | « src/platform/vboot_reference/Makefile ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/platform/vboot_reference/utility/Makefile
diff --git a/src/platform/vboot_reference/utility/Makefile b/src/platform/vboot_reference/utility/Makefile
index adfeea3041cab65a50f9ea8d062ec846acba8580..558f959b0d1a66eadf1b5afbe0195d1209ba3098 100644
--- a/src/platform/vboot_reference/utility/Makefile
+++ b/src/platform/vboot_reference/utility/Makefile
@@ -42,7 +42,7 @@ firmware_utility: firmware_utility.cc $(LIBS) $(FWLIB)
kernel_utility: kernel_utility.cc $(LIBS) $(FWLIB)
$(CXX) $(CFLAGS) $(INCLUDES) -ggdb -D__STDC_LIMIT_MACROS $< \
- -o $@ $(LIBS) $(FWLIB) -lcrypto
+ -o $@ $(LIBS) $(FWLIB) -lcrypto
signature_digest_utility: signature_digest_utility.c $(LIBS) $(FWLIB)
$(CC) $(CFLAGS) $(INCLUDES) $< -o $@ $(LIBS) $(FWLIB) -lcrypto
@@ -56,3 +56,7 @@ clean:
$(MAKE) -C $$i clean; \
done
rm -f $(TARGET_BINS)
+
+install: $(TARGET_BINS)
+ mkdir -p $(DESTDIR)
+ cp -f $^ $(DESTDIR)
« no previous file with comments | « src/platform/vboot_reference/Makefile ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698