The Design and Implementation of the FreeBSD Operating System, Second Edition
Now available: The Design and Implementation of the FreeBSD Operating System (Second Edition)


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]

FreeBSD/Linux Kernel Cross Reference
sys/modules/uart/Makefile

Version: -  FREEBSD  -  FREEBSD-13-STABLE  -  FREEBSD-13-0  -  FREEBSD-12-STABLE  -  FREEBSD-12-0  -  FREEBSD-11-STABLE  -  FREEBSD-11-0  -  FREEBSD-10-STABLE  -  FREEBSD-10-0  -  FREEBSD-9-STABLE  -  FREEBSD-9-0  -  FREEBSD-8-STABLE  -  FREEBSD-8-0  -  FREEBSD-7-STABLE  -  FREEBSD-7-0  -  FREEBSD-6-STABLE  -  FREEBSD-6-0  -  FREEBSD-5-STABLE  -  FREEBSD-5-0  -  FREEBSD-4-STABLE  -  FREEBSD-3-STABLE  -  FREEBSD22  -  l41  -  OPENBSD  -  linux-2.6  -  MK84  -  PLAN9  -  xnu-8792 
SearchContext: -  none  -  3  -  10 

    1 # $FreeBSD: releng/8.4/sys/modules/uart/Makefile 185188 2008-11-22 21:24:07Z marcel $
    2 
    3 .PATH: ${.CURDIR}/../../dev/uart
    4 
    5 .if ${MACHINE_ARCH} == "sparc64"
    6 uart_bus_ebus=  uart_bus_ebus.c
    7 ofw_bus_if=     ofw_bus_if.h
    8 .endif
    9 
   10 KMOD=   uart
   11 SRCS=   uart_bus_acpi.c ${uart_bus_ebus} uart_bus_isa.c uart_bus_pccard.c \
   12         uart_bus_pci.c uart_bus_puc.c uart_bus_scc.c \
   13         uart_core.c uart_dbg.c \
   14         uart_dev_ns8250.c uart_dev_quicc.c uart_dev_sab82532.c \
   15         uart_dev_z8530.c \
   16         uart_if.c uart_if.h uart_subr.c uart_tty.c
   17 .if ${MACHINE} == "sun4v"
   18 SRCS+=  uart_cpu_sparc64.c
   19 .else
   20 SRCS+=  uart_cpu_${MACHINE}.c
   21 .endif
   22 SRCS+=  bus_if.h card_if.h device_if.h isa_if.h ${ofw_bus_if} pci_if.h \
   23         power_if.h pccarddevs.h serdev_if.h
   24 
   25 MFILES= dev/pccard/card_if.m dev/pccard/power_if.m dev/pci/pci_if.m \
   26         dev/ofw/ofw_bus_if.m dev/uart/uart_if.m isa/isa_if.m kern/bus_if.m \
   27         kern/device_if.m kern/serdev_if.m
   28 
   29 .include <bsd.kmod.mk>

Cache object: 92bdab1357a889b7a436963cc2dd7d7b


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]


This page is part of the FreeBSD/Linux Linux Kernel Cross-Reference, and was automatically generated using a modified version of the LXR engine.