blob: 4375a55267500af4ee749678566aff2e8e5e00fd [file] [log] [blame]
Peter Tyser9902e422008-12-17 16:36:21 -06001#
2# Copyright 2000-2008
3# Wolfgang Denk, DENX Software Engineering, wd@denx.de.
4#
5# See file CREDITS for list of people who contributed to this
6# project.
7#
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
10# published by the Free Software Foundation; either version 2 of
11# the License, or (at your option) any later version.
12#
13# This program is distributed in the hope that it will be useful,
14# but WITHOUT ANY WARRANTY; without even the implied warranty of
15# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16# GNU General Public License for more details.
17#
18# You should have received a copy of the GNU General Public License
19# along with this program; if not, write to the Free Software
20# Foundation, Inc., 59 Temple Place, Suite 330, Boston,
21# MA 02111-1307 USA
22#
23
24include $(TOPDIR)/config.mk
25
Sebastien Carliera8d426f2010-11-05 15:48:07 +010026LIB := $(obj)libgpio.o
Peter Tyser9902e422008-12-17 16:36:21 -060027
Jens Scharsig8d065462010-02-03 22:46:16 +010028COBJS-$(CONFIG_AT91_GPIO) += at91_gpio.o
Dieter Kiermaiere740eb82009-06-29 14:45:08 +020029COBJS-$(CONFIG_KIRKWOOD_GPIO) += kw_gpio.o
Ajay Bhargavf56ba5d2011-08-22 17:57:38 +053030COBJS-$(CONFIG_MARVELL_GPIO) += mvgpio.o
Prafulla Wadaskarc704e7a2010-12-07 15:23:39 +053031COBJS-$(CONFIG_MARVELL_MFP) += mvmfp.o
Stefano Babicd77fe992010-07-06 17:05:06 +020032COBJS-$(CONFIG_MXC_GPIO) += mxc_gpio.o
Marek Vasut53fdab22011-11-08 23:18:13 +000033COBJS-$(CONFIG_MXS_GPIO) += mxs_gpio.o
Guennadi Liakhovetski7c6a8562009-02-07 01:18:07 +010034COBJS-$(CONFIG_PCA953X) += pca953x.o
Dirk Eibachc3213b82011-10-03 23:13:51 +000035COBJS-$(CONFIG_PCA9698) += pca9698.o
Minkyu Kang485feb62010-08-23 19:52:03 +090036COBJS-$(CONFIG_S5P) += s5p_gpio.o
Tom Warrenb3878b82011-06-17 06:27:28 +000037COBJS-$(CONFIG_TEGRA2_GPIO) += tegra2_gpio.o
Laurence Withers3ffd9682011-07-18 09:26:01 -040038COBJS-$(CONFIG_DA8XX_GPIO) += da8xx_gpio.o
Joachim Foersterc932eed2011-10-21 15:48:50 +020039COBJS-$(CONFIG_ALTERA_PIO) += altera_pio.o
Joe Hershberger911c6062011-11-11 15:55:37 -060040COBJS-$(CONFIG_MPC83XX_GPIO) += mpc83xx_gpio.o
Peter Tyser9902e422008-12-17 16:36:21 -060041
42COBJS := $(COBJS-y)
43SRCS := $(COBJS:.o=.c)
44OBJS := $(addprefix $(obj),$(COBJS))
45
46all: $(LIB)
47
48$(LIB): $(obj).depend $(OBJS)
Sebastien Carliera8d426f2010-11-05 15:48:07 +010049 $(call cmd_link_o_target, $(OBJS))
Peter Tyser9902e422008-12-17 16:36:21 -060050
51
52#########################################################################
53
54# defines $(obj).depend target
55include $(SRCTREE)/rules.mk
56
57sinclude $(obj).depend
58
59########################################################################