Deleted Added
full compact
Makefile (248411) Makefile (249636)
1# $FreeBSD: head/sys/modules/uart/Makefile 248411 2013-03-17 06:33:49Z andrew $
1# $FreeBSD: head/sys/modules/uart/Makefile 249636 2013-04-19 05:46:16Z jhibbits $
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" || ${MACHINE_CPUARCH} == "sparc64"

--- 8 unchanged lines hidden (view full) ---

18.if exists(${.CURDIR:H:H}/dev/uart/${_uart_cpu})
19uart_cpu_machine= ${_uart_cpu}
20.endif
21
22KMOD= uart
23SRCS= uart_bus_acpi.c ${uart_bus_ebus} uart_bus_isa.c uart_bus_pccard.c \
24 uart_bus_pci.c uart_bus_puc.c uart_bus_scc.c \
25 uart_core.c ${uart_cpu_machine} uart_dbg.c \
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" || ${MACHINE_CPUARCH} == "sparc64"

--- 8 unchanged lines hidden (view full) ---

18.if exists(${.CURDIR:H:H}/dev/uart/${_uart_cpu})
19uart_cpu_machine= ${_uart_cpu}
20.endif
21
22KMOD= uart
23SRCS= uart_bus_acpi.c ${uart_bus_ebus} uart_bus_isa.c uart_bus_pccard.c \
24 uart_bus_pci.c uart_bus_puc.c uart_bus_scc.c \
25 uart_core.c ${uart_cpu_machine} uart_dbg.c \
26 uart_dev_ns8250.c uart_dev_quicc.c uart_dev_sab82532.c \
26 uart_dev_lpc.c uart_dev_ns8250.c uart_dev_quicc.c uart_dev_sab82532.c \
27 uart_dev_z8530.c \
28 uart_if.c uart_if.h uart_subr.c uart_tty.c
29
30SRCS+= bus_if.h card_if.h device_if.h isa_if.h ${ofw_bus_if} pci_if.h \
31 power_if.h pccarddevs.h serdev_if.h
32SRCS+= opt_platform.h
33
34MFILES= dev/pccard/card_if.m dev/pccard/power_if.m dev/pci/pci_if.m \
35 dev/ofw/ofw_bus_if.m dev/uart/uart_if.m isa/isa_if.m kern/bus_if.m \
36 kern/device_if.m kern/serdev_if.m
37
38.include <bsd.kmod.mk>
27 uart_dev_z8530.c \
28 uart_if.c uart_if.h uart_subr.c uart_tty.c
29
30SRCS+= bus_if.h card_if.h device_if.h isa_if.h ${ofw_bus_if} pci_if.h \
31 power_if.h pccarddevs.h serdev_if.h
32SRCS+= opt_platform.h
33
34MFILES= dev/pccard/card_if.m dev/pccard/power_if.m dev/pci/pci_if.m \
35 dev/ofw/ofw_bus_if.m dev/uart/uart_if.m isa/isa_if.m kern/bus_if.m \
36 kern/device_if.m kern/serdev_if.m
37
38.include <bsd.kmod.mk>