2 # (C) Copyright 2000-2007
3 # Wolfgang Denk, DENX Software Engineering, wd@denx.de.
5 # See file CREDITS for list of people who contributed to this
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.
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.
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,
24 include $(TOPDIR)/config.mk
26 # CFLAGS += -DET_DEBUG -DDEBUG
28 LIB = $(obj)libdrivers.a
33 COBJS-y += status_led.o
36 # Block and Flash Drivers
41 COBJS-y += cfi_flash.o
42 COBJS-y += dataflash.o
43 COBJS-y += mw_eeprom.o
45 COBJS-y += sym53c8xx.o
46 COBJS-y += systemace.o
51 COBJS-y += ati_radeon_fb.o
52 COBJS-y += atmel_usart.o
53 COBJS-y += cfb_console.o
57 COBJS-y += netconsole.o
62 COBJS-y += s3c4510b_uart.o
66 COBJS-y += serial_max3100.o
67 COBJS-y += serial_xuartlite.o
69 COBJS-y += smiLynxEM.o
71 COBJS-y += videomodes.o
77 COBJS-y += bcm570x.o bcm570x_autoneg.o 5701rls.o
84 COBJS-y += inca-ip_sw.o
85 COBJS-y += ks8695eth.o
90 COBJS-y += netarm_eth.o
91 COBJS-y += ns7520_eth.o
94 COBJS-y += plb2800_eth.o
98 COBJS-y += s3c4510b_eth.o
102 COBJS-y += tsi108_eth.o
108 COBJS-y += isp116x-hcd.o
109 COBJS-y += sl811_usb.o
110 COBJS-y += usb_ohci.o
111 COBJS-y += usbdcore.o
112 COBJS-y += usbdcore_ep0.o
113 COBJS-y += usbdcore_mpc8xx.o
114 COBJS-y += usbdcore_omap1510.o
117 # Miscellaneous Drivers
121 COBJS-y += status_led.o
124 SRCS := $(COBJS:.o=.c)
125 OBJS := $(addprefix $(obj),$(COBJS))
129 $(LIB): $(obj).depend $(OBJS)
130 $(AR) $(ARFLAGS) $@ $(OBJS)
132 #########################################################################
134 # defines $(obj).depend target
135 include $(SRCTREE)/rules.mk
137 sinclude $(obj).depend
139 #########################################################################