]> CyberLeo.Net >> Repos - FreeBSD/releng/10.0.git/blob - sys/modules/uart/Makefile
- Copy stable/10 (r259064) to releng/10.0 as part of the
[FreeBSD/releng/10.0.git] / sys / modules / uart / Makefile
1 # $FreeBSD$
2
3 .PATH: ${.CURDIR}/../../dev/uart
4
5 .if ${MACHINE_CPUARCH} == "sparc64"
6 uart_bus_ebus=  uart_bus_ebus.c
7 .endif
8
9 .if ${MACHINE_CPUARCH} == "arm"
10 uart_dev_lpc=   uart_dev_lpc.c
11 .endif
12
13 .if ${MACHINE_CPUARCH} == "arm" || ${MACHINE_CPUARCH} == "sparc64"
14 ofw_bus_if=     ofw_bus_if.h
15 .endif
16
17 .if ${MACHINE} == "i386" || ${MACHINE} == "amd64"
18 _uart_cpu=uart_cpu_x86.c
19 .else
20 _uart_cpu=uart_cpu_${MACHINE}.c
21 .endif
22 .if exists(${.CURDIR:H:H}/dev/uart/${_uart_cpu})
23 uart_cpu_machine= ${_uart_cpu}
24 .endif
25
26 KMOD=   uart
27 SRCS=   uart_bus_acpi.c ${uart_bus_ebus} uart_bus_isa.c uart_bus_pccard.c \
28         uart_bus_pci.c uart_bus_puc.c uart_bus_scc.c \
29         uart_core.c ${uart_cpu_machine} uart_dbg.c \
30         ${uart_dev_lpc} uart_dev_ns8250.c uart_dev_quicc.c uart_dev_sab82532.c \
31         uart_dev_z8530.c \
32         uart_if.c uart_if.h uart_subr.c uart_tty.c
33
34 SRCS+=  bus_if.h card_if.h device_if.h isa_if.h ${ofw_bus_if} pci_if.h \
35         power_if.h pccarddevs.h serdev_if.h
36 SRCS+=  opt_platform.h
37
38 MFILES= dev/pccard/card_if.m dev/pccard/power_if.m dev/pci/pci_if.m \
39         dev/ofw/ofw_bus_if.m dev/uart/uart_if.m isa/isa_if.m kern/bus_if.m \
40         kern/device_if.m kern/serdev_if.m
41
42 .include <bsd.kmod.mk>