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

Unified Diff: tpmd_dev/darwin/Makefile

Issue 660204: Upgrade to tpm-emulator version 0.7. (Closed)
Patch Set: 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 | « tpmd_dev/darwin/Info.plist ('k') | tpmd_dev/darwin/tpm_bridge.c » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tpmd_dev/darwin/Makefile
diff --git a/tpmd_dev/darwin/Makefile b/tpmd_dev/darwin/Makefile
new file mode 100644
index 0000000000000000000000000000000000000000..1b3e1d0df6102cc4bbe62af0728822c914321846
--- /dev/null
+++ b/tpmd_dev/darwin/Makefile
@@ -0,0 +1,24 @@
+# Software-based Trusted Platform Module (TPM) Emulator
+# Copyright (C) 2004-2010 Mario Strasser <mast@gmx.net>
+#
+# $Id: Makefile 423 2010-02-22 16:32:22Z mast $
+
+KEXT_NAME = tpm_bridge.kext
+KEXT_BIN = build/Release/$(KEXT_NAME)
+KEXT_DIR = $(DESTDIR)/System/Library/Extensions
+
+all:
+ @xcodebuild > /dev/null
+
+clean:
+ @xcodebuild clean > /dev/null
+
+TPM_OWNER ?= root
+TPM_GROUP ?= wheel
+
+install: $(KEXT_BIN)
+ @mkdir -p $(KEXT_DIR)
+ @cp -Rp $(KEXT_BIN) $(KEXT_DIR)
+ @chown -R $(TPM_OWNER):$(TPM_GROUP) $(KEXT_DIR)/$(KEXT_NAME)
+
+.PHONY: all clean install
« no previous file with comments | « tpmd_dev/darwin/Info.plist ('k') | tpmd_dev/darwin/tpm_bridge.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698