Deleted Added
full compact
Makefile (285068) Makefile (289710)
1# $FreeBSD: head/sys/modules/uart/Makefile 285068 2015-07-03 01:50:26Z imp $
1# $FreeBSD: head/sys/modules/uart/Makefile 289710 2015-10-21 18:30:42Z emaste $
2
3.PATH: ${.CURDIR}/../../dev/uart
4
5.if ${MACHINE_CPUARCH} == "sparc64"
6uart_bus_ebus= uart_bus_ebus.c
7.endif
8
9.if ${MACHINE_CPUARCH} == "arm"
10uart_dev_lpc= uart_dev_lpc.c
11.endif
12
2
3.PATH: ${.CURDIR}/../../dev/uart
4
5.if ${MACHINE_CPUARCH} == "sparc64"
6uart_bus_ebus= uart_bus_ebus.c
7.endif
8
9.if ${MACHINE_CPUARCH} == "arm"
10uart_dev_lpc= uart_dev_lpc.c
11.endif
12
13.if ${MACHINE_CPUARCH} == "arm" || ${MACHINE_CPUARCH} == "sparc64" || \
14 ${MACHINE_CPUARCH} == "powerpc"
13.if ${MACHINE_CPUARCH} == "aarch64" || ${MACHINE_CPUARCH} == "arm" || \
14 ${MACHINE_CPUARCH} == "sparc64" || ${MACHINE_CPUARCH} == "powerpc"
15ofw_bus_if= ofw_bus_if.h
16.endif
17
18.if ${MACHINE} == "i386" || ${MACHINE} == "amd64"
19_uart_cpu=uart_cpu_x86.c
20.else
21_uart_cpu=uart_cpu_${MACHINE}.c
22.endif

--- 17 unchanged lines hidden ---
15ofw_bus_if= ofw_bus_if.h
16.endif
17
18.if ${MACHINE} == "i386" || ${MACHINE} == "amd64"
19_uart_cpu=uart_cpu_x86.c
20.else
21_uart_cpu=uart_cpu_${MACHINE}.c
22.endif

--- 17 unchanged lines hidden ---