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 LIB := $(obj)libserial.a
28 COBJS-$(CONFIG_ATMEL_USART) += atmel_usart.o
29 COBJS-$(CONFIG_MCFUART) += mcfuart.o
30 COBJS-y += ns9750_serial.o
32 COBJS-$(CONFIG_DRIVER_S3C4510_UART) += s3c4510b_uart.o
34 COBJS-$(CONFIG_MAX3100_SERIAL) += serial_max3100.o
35 COBJS-y += serial_pl010.o
36 COBJS-y += serial_pl011.o
37 COBJS-$(CONFIG_XILINX_UARTLITE) += serial_xuartlite.o
38 COBJS-y += serial_sh.o
39 COBJS-$(CONFIG_USB_TTY) += usbtty.o
42 SRCS := $(COBJS:.o=.c)
43 OBJS := $(addprefix $(obj),$(COBJS))
47 $(LIB): $(obj).depend $(OBJS)
48 $(AR) $(ARFLAGS) $@ $(OBJS)
50 #########################################################################
52 # defines $(obj).depend target
53 include $(SRCTREE)/rules.mk
55 sinclude $(obj).depend
57 #########################################################################