2002-10-29 19:01:12 +00:00
|
|
|
#
|
2006-09-01 17:49:50 +00:00
|
|
|
# (C) Copyright 2000-2006
|
2002-10-29 19:01:12 +00:00
|
|
|
# Wolfgang Denk, DENX Software Engineering, wd@denx.de.
|
|
|
|
#
|
|
|
|
# See file CREDITS for list of people who contributed to this
|
|
|
|
# project.
|
|
|
|
#
|
|
|
|
# This program is free software; you can redistribute it and/or
|
|
|
|
# modify it under the terms of the GNU General Public License as
|
|
|
|
# published by the Free Software Foundation; either version 2 of
|
|
|
|
# the License, or (at your option) any later version.
|
|
|
|
#
|
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
2004-03-12 00:14:09 +00:00
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
2002-10-29 19:01:12 +00:00
|
|
|
# GNU General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with this program; if not, write to the Free Software
|
|
|
|
# Foundation, Inc., 59 Temple Place, Suite 330, Boston,
|
|
|
|
# MA 02111-1307 USA
|
|
|
|
#
|
|
|
|
|
|
|
|
include $(TOPDIR)/config.mk
|
|
|
|
|
|
|
|
# CFLAGS += -DET_DEBUG -DDEBUG
|
|
|
|
|
2006-09-01 17:49:50 +00:00
|
|
|
LIB = $(obj)libdrivers.a
|
2002-10-29 19:01:12 +00:00
|
|
|
|
2006-10-24 12:31:24 +00:00
|
|
|
COBJS = 3c589.o 5701rls.o ali512x.o atmel_usart.o \
|
2004-02-08 22:55:38 +00:00
|
|
|
bcm570x.o bcm570x_autoneg.o cfb_console.o cfi_flash.o \
|
2004-08-01 22:48:16 +00:00
|
|
|
cs8900.o ct69000.o dataflash.o dc2114x.o dm9000x.o \
|
2003-06-03 23:54:09 +00:00
|
|
|
e1000.o eepro100.o \
|
2006-07-10 21:07:28 +00:00
|
|
|
i8042.o inca-ip_sw.o keyboard.o \
|
2006-01-20 09:03:34 +00:00
|
|
|
lan91c96.o macb.o \
|
2005-01-09 23:16:25 +00:00
|
|
|
natsemi.o ne2000.o netarm_eth.o netconsole.o \
|
2005-10-08 23:41:48 +00:00
|
|
|
ns16550.o ns8382x.o ns87308.o ns7520_eth.o omap1510_i2c.o \
|
2006-11-02 10:49:51 +00:00
|
|
|
omap24xx_i2c.o pci.o pci_auto.o pci_indirect.o tsi108_pci.o\
|
|
|
|
tsi108_i2c.o pcnet.o plb2800_eth.o \
|
2004-07-01 16:30:44 +00:00
|
|
|
ps2ser.o ps2mult.o pc_keyb.o \
|
2004-04-18 22:03:42 +00:00
|
|
|
rtl8019.o rtl8139.o rtl8169.o \
|
2004-10-09 22:21:29 +00:00
|
|
|
s3c4510b_eth.o s3c4510b_uart.o \
|
2004-07-01 16:30:44 +00:00
|
|
|
sed13806.o sed156x.o \
|
2004-10-09 22:21:29 +00:00
|
|
|
serial.o serial_max3100.o \
|
2004-08-01 22:48:16 +00:00
|
|
|
serial_pl010.o serial_pl011.o serial_xuartlite.o \
|
2005-03-27 23:41:39 +00:00
|
|
|
sl811_usb.o sm501.o smc91111.o smiLynxEM.o \
|
2007-02-20 08:05:23 +00:00
|
|
|
status_led.o sym53c8xx.o systemace.o ahci.o \
|
2006-11-02 10:49:51 +00:00
|
|
|
ti_pci1410a.o tigon3.o tsec.o tsi108_eth.o\
|
2004-03-23 22:53:55 +00:00
|
|
|
usbdcore.o usbdcore_ep0.o usbdcore_omap1510.o usbtty.o \
|
2005-05-19 22:39:42 +00:00
|
|
|
videomodes.o w83c553f.o \
|
2006-07-10 21:07:28 +00:00
|
|
|
ks8695eth.o \
|
|
|
|
pxa_pcmcia.o mpc8xx_pcmcia.o tqm8xx_pcmcia.o \
|
2006-10-19 16:02:16 +00:00
|
|
|
rpx_pcmcia.o \
|
|
|
|
fsl_i2c.o
|
2003-05-31 18:35:21 +00:00
|
|
|
|
2006-09-01 17:49:50 +00:00
|
|
|
SRCS := $(COBJS:.o=.c)
|
|
|
|
OBJS := $(addprefix $(obj),$(COBJS))
|
|
|
|
|
2002-10-29 19:01:12 +00:00
|
|
|
all: $(LIB)
|
|
|
|
|
2006-09-01 17:49:50 +00:00
|
|
|
$(LIB): $(obj).depend $(OBJS)
|
2006-10-08 23:02:05 +00:00
|
|
|
$(AR) $(ARFLAGS) $@ $(OBJS)
|
2002-10-29 19:01:12 +00:00
|
|
|
|
|
|
|
#########################################################################
|
|
|
|
|
2006-09-01 17:49:50 +00:00
|
|
|
# defines $(obj).depend target
|
|
|
|
include $(SRCTREE)/rules.mk
|
2002-10-29 19:01:12 +00:00
|
|
|
|
2006-09-01 17:49:50 +00:00
|
|
|
sinclude $(obj).depend
|
2002-10-29 19:01:12 +00:00
|
|
|
|
|
|
|
#########################################################################
|