2002-10-30 03:01:12 +08:00
|
|
|
#
|
2006-09-02 01:49:50 +08:00
|
|
|
# (C) Copyright 2000-2006
|
2002-10-30 03:01:12 +08: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 08:14:09 +08:00
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
2002-10-30 03:01:12 +08: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-02 01:49:50 +08:00
|
|
|
LIB = $(obj)libdrivers.a
|
2002-10-30 03:01:12 +08:00
|
|
|
|
2007-08-14 17:30:06 +08:00
|
|
|
COBJS = 3c589.o 5701rls.o ali512x.o at45.o ata_piix.o atmel_usart.o \
|
2004-02-09 06:55:38 +08:00
|
|
|
bcm570x.o bcm570x_autoneg.o cfb_console.o cfi_flash.o \
|
2004-08-02 06:48:16 +08:00
|
|
|
cs8900.o ct69000.o dataflash.o dc2114x.o dm9000x.o \
|
2007-05-09 18:37:56 +08:00
|
|
|
e1000.o eepro100.o enc28j60.o \
|
2007-04-03 20:27:18 +08:00
|
|
|
i8042.o inca-ip_sw.o isp116x-hcd.o keyboard.o \
|
2006-01-20 17:03:34 +08:00
|
|
|
lan91c96.o macb.o \
|
2005-01-10 07:16:25 +08:00
|
|
|
natsemi.o ne2000.o netarm_eth.o netconsole.o \
|
2005-10-09 07:41:48 +08:00
|
|
|
ns16550.o ns8382x.o ns87308.o ns7520_eth.o omap1510_i2c.o \
|
2005-01-10 07:16:25 +08:00
|
|
|
omap24xx_i2c.o pci.o pci_auto.o pci_indirect.o \
|
2003-04-09 07:25:21 +08:00
|
|
|
pcnet.o plb2800_eth.o \
|
2004-07-02 00:30:44 +08:00
|
|
|
ps2ser.o ps2mult.o pc_keyb.o \
|
2004-04-19 06:03:42 +08:00
|
|
|
rtl8019.o rtl8139.o rtl8169.o \
|
2004-10-10 06:21:29 +08:00
|
|
|
s3c4510b_eth.o s3c4510b_uart.o \
|
2004-07-02 00:30:44 +08:00
|
|
|
sed13806.o sed156x.o \
|
2004-10-10 06:21:29 +08:00
|
|
|
serial.o serial_max3100.o \
|
2004-08-02 06:48:16 +08:00
|
|
|
serial_pl010.o serial_pl011.o serial_xuartlite.o \
|
2007-08-31 20:29:04 +08:00
|
|
|
sil680.o sl811_usb.o sm501.o smc91111.o smiLynxEM.o \
|
2007-02-20 16:05:23 +08:00
|
|
|
status_led.o sym53c8xx.o systemace.o ahci.o \
|
2005-07-26 04:38:06 +08:00
|
|
|
ti_pci1410a.o tigon3.o tsec.o \
|
2007-04-18 23:07:26 +08:00
|
|
|
tsi108_eth.o tsi108_i2c.o tsi108_pci.o \
|
2006-08-08 05:21:52 +08:00
|
|
|
usb_ohci.o \
|
|
|
|
usbdcore.o usbdcore_ep0.o usbdcore_mpc8xx.o usbdcore_omap1510.o \
|
|
|
|
usbtty.o \
|
2005-05-20 06:39:42 +08:00
|
|
|
videomodes.o w83c553f.o \
|
2006-07-11 05:07:28 +08:00
|
|
|
ks8695eth.o \
|
|
|
|
pxa_pcmcia.o mpc8xx_pcmcia.o tqm8xx_pcmcia.o \
|
2006-10-20 00:02:16 +08:00
|
|
|
rpx_pcmcia.o \
|
2007-10-19 06:09:05 +08:00
|
|
|
fsl_i2c.o fsl_pci_init.o ati_radeon_fb.o \
|
|
|
|
ds1722.o mw_eeprom.o
|
2003-06-01 02:35:21 +08:00
|
|
|
|
2006-09-02 01:49:50 +08:00
|
|
|
SRCS := $(COBJS:.o=.c)
|
|
|
|
OBJS := $(addprefix $(obj),$(COBJS))
|
|
|
|
|
2002-10-30 03:01:12 +08:00
|
|
|
all: $(LIB)
|
|
|
|
|
2006-09-02 01:49:50 +08:00
|
|
|
$(LIB): $(obj).depend $(OBJS)
|
2006-10-09 07:02:05 +08:00
|
|
|
$(AR) $(ARFLAGS) $@ $(OBJS)
|
2002-10-30 03:01:12 +08:00
|
|
|
|
|
|
|
#########################################################################
|
|
|
|
|
2006-09-02 01:49:50 +08:00
|
|
|
# defines $(obj).depend target
|
|
|
|
include $(SRCTREE)/rules.mk
|
2002-10-30 03:01:12 +08:00
|
|
|
|
2006-09-02 01:49:50 +08:00
|
|
|
sinclude $(obj).depend
|
2002-10-30 03:01:12 +08:00
|
|
|
|
|
|
|
#########################################################################
|