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

Unified Diff: src/platform/tpm_lite/src/tlcl/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 | « src/platform/tpm_lite/src/testsuite/readonly.c ('k') | src/platform/tpm_lite/src/tlcl/generator.c » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/platform/tpm_lite/src/tlcl/Makefile
diff --git a/src/platform/tpm_lite/src/tlcl/Makefile b/src/platform/tpm_lite/src/tlcl/Makefile
index bb729e0080ffdaec66f0417d4060c0ad1e2609a4..a80dd8f8f72793ed963e7e30b36abd8e37db5a37 100644
--- a/src/platform/tpm_lite/src/tlcl/Makefile
+++ b/src/platform/tpm_lite/src/tlcl/Makefile
@@ -3,7 +3,14 @@
# found in the LICENSE file.
INCLUDEDIRS = -I../include -I../../../../third_party/tpm-emulator/tpmd/unix
-CFLAGS += -g -Wall -Werror -ansi -pedantic $(INCLUDEDIRS)
+CFLAGS += -g -Wall -Werror $(INCLUDEDIRS)
+# CFLAGS += -ansi -pedantic
+ifeq ($(USE_TPM_EMULATOR),1)
+CFLAGS += -DUSE_TPM_EMULATOR=1
+else
+CFLAGS += -DUSE_TPM_EMULATOR=0
+endif
+
CC ?= cc
libtlcl.a: tlcl.o
« no previous file with comments | « src/platform/tpm_lite/src/testsuite/readonly.c ('k') | src/platform/tpm_lite/src/tlcl/generator.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698