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

Side by Side Diff: drivers/misc/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, 8 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 | « common/cmd_vboot.c ('k') | drivers/tpm/Makefile » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # 1 #
2 # (C) Copyright 2000-2007 2 # (C) Copyright 2000-2007
3 # Wolfgang Denk, DENX Software Engineering, wd@denx.de. 3 # Wolfgang Denk, DENX Software Engineering, wd@denx.de.
4 # 4 #
5 # See file CREDITS for list of people who contributed to this 5 # See file CREDITS for list of people who contributed to this
6 # project. 6 # project.
7 # 7 #
8 # This program is free software; you can redistribute it and/or 8 # This program is free software; you can redistribute it and/or
9 # modify it under the terms of the GNU General Public License as 9 # modify it under the terms of the GNU General Public License as
10 # published by the Free Software Foundation; either version 2 of 10 # published by the Free Software Foundation; either version 2 of
(...skipping 15 matching lines...) Expand all
26 LIB := $(obj)libmisc.a 26 LIB := $(obj)libmisc.a
27 27
28 COBJS-$(CONFIG_ALI152X) += ali512x.o 28 COBJS-$(CONFIG_ALI152X) += ali512x.o
29 COBJS-$(CONFIG_DS4510) += ds4510.o 29 COBJS-$(CONFIG_DS4510) += ds4510.o
30 COBJS-$(CONFIG_FSL_LAW) += fsl_law.o 30 COBJS-$(CONFIG_FSL_LAW) += fsl_law.o
31 COBJS-$(CONFIG_GPIO_LED) += gpio_led.o 31 COBJS-$(CONFIG_GPIO_LED) += gpio_led.o
32 COBJS-$(CONFIG_NS87308) += ns87308.o 32 COBJS-$(CONFIG_NS87308) += ns87308.o
33 COBJS-$(CONFIG_STATUS_LED) += status_led.o 33 COBJS-$(CONFIG_STATUS_LED) += status_led.o
34 COBJS-$(CONFIG_TWL4030_LED) += twl4030_led.o 34 COBJS-$(CONFIG_TWL4030_LED) += twl4030_led.o
35 COBJS-$(CONFIG_FSL_PMIC) += fsl_pmic.o 35 COBJS-$(CONFIG_FSL_PMIC) += fsl_pmic.o
36 COBJS-$(CONFIG_INFINEON_TPM_I2C) += infineon_i2ctpm.o
37 36
38 COBJS := $(COBJS-y) 37 COBJS := $(COBJS-y)
39 SRCS := $(COBJS:.o=.c) 38 SRCS := $(COBJS:.o=.c)
40 OBJS := $(addprefix $(obj),$(COBJS)) 39 OBJS := $(addprefix $(obj),$(COBJS))
41 40
42 all: $(LIB) 41 all: $(LIB)
43 42
44 $(LIB): $(obj).depend $(OBJS) 43 $(LIB): $(obj).depend $(OBJS)
45 $(AR) $(ARFLAGS) $@ $(OBJS) 44 $(AR) $(ARFLAGS) $@ $(OBJS)
46 45
47 ######################################################################### 46 #########################################################################
48 47
49 # defines $(obj).depend target 48 # defines $(obj).depend target
50 include $(SRCTREE)/rules.mk 49 include $(SRCTREE)/rules.mk
51 50
52 sinclude $(obj).depend 51 sinclude $(obj).depend
53 52
54 ######################################################################### 53 #########################################################################
OLDNEW
« no previous file with comments | « common/cmd_vboot.c ('k') | drivers/tpm/Makefile » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698