]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - drivers/Makefile
Group network drivers in drivers/Makefile
[karo-tx-uboot.git] / drivers / Makefile
1 #
2 # (C) Copyright 2000-2007
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
24 include $(TOPDIR)/config.mk
25
26 # CFLAGS += -DET_DEBUG -DDEBUG
27
28 LIB     = $(obj)libdrivers.a
29
30 COBJS-y += ali512x.o
31 COBJS-y += at45.o
32 COBJS-y += ata_piix.o
33 COBJS-y += ati_radeon_fb.o
34 COBJS-y += atmel_usart.o
35 COBJS-y += cfb_console.o
36 COBJS-y += cfi_flash.o
37 COBJS-y += ct69000.o
38 COBJS-y += dataflash.o
39 COBJS-y += ds1722.o
40 COBJS-y += fsl_i2c.o
41 COBJS-y += fsl_pci_init.o
42 COBJS-y += i8042.o
43 COBJS-y += isp116x-hcd.o
44 COBJS-y += keyboard.o
45 COBJS-y += mpc8xx_pcmcia.o
46 COBJS-y += mw_eeprom.o
47 COBJS-y += netconsole.o
48 COBJS-y += ns16550.o
49 COBJS-y += ns87308.o
50 COBJS-y += omap1510_i2c.o
51 COBJS-y += omap24xx_i2c.o
52 COBJS-y += pc_keyb.o
53 COBJS-y += pci.o
54 COBJS-y += pci_auto.o
55 COBJS-y += pci_indirect.o
56 COBJS-y += ps2ser.o
57 COBJS-y += ps2mult.o
58 COBJS-y += pxa_pcmcia.o
59 COBJS-y += rpx_pcmcia.o
60 COBJS-y += s3c4510b_uart.o
61 COBJS-y += sed13806.o
62 COBJS-y += sed156x.o
63 COBJS-y += serial.o
64 COBJS-y += serial_max3100.o
65 COBJS-y += serial_xuartlite.o
66 COBJS-y += sil680.o
67 COBJS-y += sl811_usb.o
68 COBJS-y += sm501.o
69 COBJS-y += smiLynxEM.o
70 COBJS-y += status_led.o
71 COBJS-y += sym53c8xx.o
72 COBJS-y += systemace.o
73 COBJS-y += ahci.o
74 COBJS-y += ti_pci1410a.o
75 COBJS-y += tqm8xx_pcmcia.o
76 COBJS-y += tsi108_i2c.o
77 COBJS-y += tsi108_pci.o
78 COBJS-y += usb_ohci.o
79 COBJS-y += usbdcore.o
80 COBJS-y += usbdcore_ep0.o
81 COBJS-y += usbdcore_mpc8xx.o
82 COBJS-y += usbdcore_omap1510.o
83 COBJS-y += usbtty.o
84 COBJS-y += videomodes.o
85 COBJS-y += w83c553f.o
86
87 #
88 # Network Drivers
89 #
90 COBJS-y += 3c589.o
91 COBJS-y += bcm570x.o bcm570x_autoneg.o 5701rls.o
92 COBJS-y += cs8900.o
93 COBJS-y += dc2114x.o
94 COBJS-y += dm9000x.o
95 COBJS-y += e1000.o
96 COBJS-y += eepro100.o
97 COBJS-y += enc28j60.o
98 COBJS-y += inca-ip_sw.o
99 COBJS-y += ks8695eth.o
100 COBJS-y += lan91c96.o
101 COBJS-y += macb.o
102 COBJS-y += natsemi.o
103 COBJS-y += ne2000.o
104 COBJS-y += netarm_eth.o
105 COBJS-y += ns7520_eth.o
106 COBJS-y += ns8382x.o
107 COBJS-y += pcnet.o
108 COBJS-y += plb2800_eth.o
109 COBJS-y += rtl8019.o
110 COBJS-y += rtl8139.o
111 COBJS-y += rtl8169.o
112 COBJS-y += s3c4510b_eth.o
113 COBJS-y += smc91111.o
114 COBJS-y += tigon3.o
115 COBJS-y += tsec.o
116 COBJS-y += tsi108_eth.o
117
118 COBJS   := $(COBJS-y)
119 SRCS    := $(COBJS:.o=.c)
120 OBJS    := $(addprefix $(obj),$(COBJS))
121
122 all:    $(LIB)
123
124 $(LIB): $(obj).depend $(OBJS)
125         $(AR) $(ARFLAGS) $@ $(OBJS)
126
127 #########################################################################
128
129 # defines $(obj).depend target
130 include $(SRCTREE)/rules.mk
131
132 sinclude $(obj).depend
133
134 #########################################################################