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

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

Issue 587014: Initial code for the TPM Lightweight Command Library. (Closed)
Patch Set: Added missing license Created 10 years, 10 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/include/tlcl.h ('k') | src/platform/tpm_lite/src/testsuite/readonly.c » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/platform/tpm_lite/src/testsuite/Makefile
diff --git a/src/platform/tpm_lite/src/testsuite/Makefile b/src/platform/tpm_lite/src/testsuite/Makefile
new file mode 100644
index 0000000000000000000000000000000000000000..ac515b762ddb1921d8cf1ad7b144ab6d4331f13f
--- /dev/null
+++ b/src/platform/tpm_lite/src/testsuite/Makefile
@@ -0,0 +1,19 @@
+# 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.
+
+LIBTLCL = ../tlcl/libtlcl.a
+LIBTPMEMU = ../../../../third_party/tpm-emulator/tpmemu/libtpmemu.a
+CC ?= cc
+
+readonly: readonly.o $(LIBTLCL) $(LIBTPMEMU)
+ $(CC) -g readonly.o -o readonly \
+ $(LIBTLCL) \
+ $(LIBTPMEMU) \
+ -lgmp
+
+readonly.o: readonly.c
+ cc -g -c -Werror -Wall -pedantic -ansi readonly.c -I../include
+
+clean:
+ rm -f readonly *.o *~
« no previous file with comments | « src/platform/tpm_lite/src/include/tlcl.h ('k') | src/platform/tpm_lite/src/testsuite/readonly.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698