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

Side by Side Diff: drivers/tpm/Makefile

Issue 6683023: Add Infineon v05 TPM driver (Closed) Base URL: ssh://git@gitrw.chromium.org:9222/u-boot-next.git@chromeos-v2010.09
Patch Set: Fix nits Created 9 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « drivers/misc/Makefile ('k') | drivers/tpm/slb9635_i2c.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 # Copyright (c) 2011 The Chromium OS Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file.
4 #
5
6 include $(TOPDIR)/config.mk
7
8 LIB := $(obj)libtpm.a
9
10 IFXDIR = slb9635_i2c
11
12 $(shell mkdir -p $(obj)$(IFXDIR))
13
14 COBJS-$(CONFIG_INFINEON_TPM_I2C) = slb9635_i2c.o \
15 $(IFXDIR)/tpm_proto.o \
16 $(IFXDIR)/tpm.o \
17 $(IFXDIR)/tpm_tis_i2c.o \
18 $(IFXDIR)/tddl.o \
19 $(IFXDIR)/ifx_v05.o \
20 $(IFXDIR)/ifx_v03.o
21
22 COBJS := $(COBJS-y)
23 SRCS := $(COBJS:.o=.c)
24 OBJS := $(addprefix $(obj),$(COBJS))
25
26 # EXTRA_CFLAGS += -I. -I$(TOPDIR)/include
27 # CFLAGS += $(EXTRA_CFLAGS)
28 # HOSTCFLAGS += $(EXTRA_CFLAGS)
29 # CPPFLAGS += $(EXTRA_CFLAGS)
30
31 all: $(LIB)
32
33 $(LIB): $(obj).depend $(OBJS)
34 $(AR) $(ARFLAGS) $@ $(OBJS)
35
36 #########################################################################
37
38 include $(SRCTREE)/rules.mk
39
40 sinclude $(obj).depend
41
42 #########################################################################
OLDNEW
« no previous file with comments | « drivers/misc/Makefile ('k') | drivers/tpm/slb9635_i2c.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698