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

Unified Diff: src/platform/tpm_lite/src/Makefile

Issue 1787004: TPM Lite: Add a "firmware" target for building TPM Lite (Closed)
Patch Set: Add a separate makefile for firmware compilation. Created 10 years, 8 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 | src/platform/tpm_lite/src/testsuite/Makefile » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/platform/tpm_lite/src/Makefile
diff --git a/src/platform/tpm_lite/src/Makefile b/src/platform/tpm_lite/src/Makefile
index 8f8b208cb6c37319b20fcf3b2b60565df4f40b21..2762396f7796b00d6b570d2228ca155d25418ba1 100644
--- a/src/platform/tpm_lite/src/Makefile
+++ b/src/platform/tpm_lite/src/Makefile
@@ -8,9 +8,12 @@
USE_TPM_EMULATOR ?= 1
default:
- @echo "Usage: make { local | cross } [ USE_TPM_EMULATOR=0 ]"
+ @echo "Usage: make { firmware | local | cross } [ USE_TPM_EMULATOR=0 ]"
@exit 1
+firmware:
+ (cd tlcl; $(MAKE) -f Makefile.firmware)
+
local:
(cd tlcl; $(MAKE) USE_TPM_EMULATOR=$(USE_TPM_EMULATOR))
(cd testsuite; $(MAKE) USE_TPM_EMULATOR=$(USE_TPM_EMULATOR) \
« no previous file with comments | « no previous file | src/platform/tpm_lite/src/testsuite/Makefile » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698