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

Side by Side 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 unified diff | 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 »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 # Software-based Trusted Platform Module (TPM) Emulator
2 # Copyright (C) 2004-2010 Mario Strasser <mast@gmx.net>
3 #
4 # $Id: Makefile 423 2010-02-22 16:32:22Z mast $
5
6 KEXT_NAME = tpm_bridge.kext
7 KEXT_BIN = build/Release/$(KEXT_NAME)
8 KEXT_DIR = $(DESTDIR)/System/Library/Extensions
9
10 all:
11 @xcodebuild > /dev/null
12
13 clean:
14 @xcodebuild clean > /dev/null
15
16 TPM_OWNER ?= root
17 TPM_GROUP ?= wheel
18
19 install: $(KEXT_BIN)
20 @mkdir -p $(KEXT_DIR)
21 @cp -Rp $(KEXT_BIN) $(KEXT_DIR)
22 @chown -R $(TPM_OWNER):$(TPM_GROUP) $(KEXT_DIR)/$(KEXT_NAME)
23
24 .PHONY: all clean install
OLDNEW
« 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