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

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

Issue 870004: Many upgrades to tpm_lite. (Closed)
Patch Set: Fix makefile comment. Created 10 years, 9 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/include/tlcl.h » ('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
new file mode 100644
index 0000000000000000000000000000000000000000..8f8b208cb6c37319b20fcf3b2b60565df4f40b21
--- /dev/null
+++ b/src/platform/tpm_lite/src/Makefile
@@ -0,0 +1,25 @@
+# Copyright (c) 2010 The Chromium OS Authors. All rights reserved.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+
+# Simple Makefile for local compilation on the platform and cross compilation
+# using emerge.
+
+USE_TPM_EMULATOR ?= 1
+
+default:
+ @echo "Usage: make { local | cross } [ USE_TPM_EMULATOR=0 ]"
+ @exit 1
+
+local:
+ (cd tlcl; $(MAKE) USE_TPM_EMULATOR=$(USE_TPM_EMULATOR))
+ (cd testsuite; $(MAKE) USE_TPM_EMULATOR=$(USE_TPM_EMULATOR) \
+ LOCAL_COMPILATION=1)
+
+cross:
+ (cd tlcl; $(MAKE) USE_TPM_EMULATOR=$(USE_TPM_EMULATOR))
+ (cd testsuite; $(MAKE) USE_TPM_EMULATOR=$(USE_TPM_EMULATOR))
+
+clean:
+ (cd tlcl; $(MAKE) clean)
+ (cd testsuite; $(MAKE) clean)
« no previous file with comments | « no previous file | src/platform/tpm_lite/src/include/tlcl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698