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

Unified Diff: utility/Makefile

Issue 3149001: Command-line utility to execute TPM commands bypassing the TSS stack. (Closed) Base URL: ssh://git@chromiumos-git/vboot_reference.git
Patch Set: . Created 10 years, 4 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 | « firmware/version.c ('k') | utility/tpmc.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 f45603bb0e2dec73ea5a122ca46c76881a59b827..03e1b7353c56f1d2663f6402d620beeaf7e9a295 100644
--- a/utility/Makefile
+++ b/utility/Makefile
@@ -23,6 +23,7 @@ TARGET_NAMES = dumpRSAPublicKey \
signature_digest_utility \
tlcl_generator \
tpm_init_temp_fix \
+ tpmc \
vbutil_firmware \
vbutil_kernel \
vbutil_key \
@@ -77,6 +78,9 @@ ${BUILD_ROOT}/tpm_init_temp_fix: tpm_init_temp_fix.c $(LIBS)
${BUILD_ROOT}/dev_make_keypair: dev_make_keypair
cp -f $< $@
+${BUILD_ROOT}/tpmc: tpmc.c $(LIBS)
+ $(CC) $(CFLAGS) $(INCLUDES) $< -o $@ $(LIBS)
+
install: $(TARGET_BINS)
mkdir -p $(DESTDIR)
cp -f $(TARGET_BINS) $(DESTDIR)
« no previous file with comments | « firmware/version.c ('k') | utility/tpmc.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698