]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - sys/modules/uart/Makefile
Import tzdata 2018d
[FreeBSD/FreeBSD.git] / sys / modules / uart / Makefile
1 # $FreeBSD$
2
3 .PATH: ${SRCTOP}/sys/dev/uart
4
5 .if ${MACHINE_CPUARCH} == "sparc64"
6 uart_bus_ebus=  uart_bus_ebus.c
7 .endif
8
9 .if ${MACHINE_CPUARCH} == "aarch64" || ${MACHINE_CPUARCH} == "arm" || \
10     ${MACHINE_CPUARCH} == "powerpc" || ${MACHINE_CPUARCH} == "riscv" || \
11     ${MACHINE_CPUARCH} == "sparc64"
12 ofw_bus_if=     ofw_bus_if.h
13 .endif
14
15 .if ${MACHINE} == "i386" || ${MACHINE} == "amd64"
16 _uart_cpu=uart_cpu_x86.c
17 .else
18 _uart_cpu=uart_cpu_${MACHINE}.c
19 .endif
20 .if exists(${.CURDIR:H:H}/dev/uart/${_uart_cpu})
21 uart_cpu_machine= ${_uart_cpu}
22 .endif
23
24 .if ${MACHINE} == "arm64"
25 uart_dev_mvebu=uart_dev_mvebu.c
26 .endif
27
28 KMOD=   uart
29 SRCS=   uart_bus_acpi.c ${uart_bus_ebus} uart_bus_isa.c uart_bus_pccard.c \
30         uart_bus_pci.c uart_bus_puc.c uart_bus_scc.c \
31         uart_core.c ${uart_cpu_machine} uart_dbg.c \
32         ${uart_dev_mvebu} uart_dev_ns8250.c uart_dev_quicc.c \
33         uart_dev_sab82532.c uart_dev_z8530.c \
34         uart_if.c uart_if.h uart_subr.c uart_tty.c
35
36 SRCS+=  acpi_if.h bus_if.h card_if.h device_if.h isa_if.h ${ofw_bus_if} \
37         pci_if.h \
38         power_if.h pccarddevs.h serdev_if.h
39 SRCS+=  opt_platform.h opt_uart.h
40
41 .include <bsd.kmod.mk>