]> CyberLeo.Net >> Repos - FreeBSD/releng/10.0.git/blob - sys/modules/le/Makefile
- Copy stable/10 (r259064) to releng/10.0 as part of the
[FreeBSD/releng/10.0.git] / sys / modules / le / Makefile
1 # $FreeBSD$
2
3 .PATH: ${.CURDIR}/../../dev/le
4
5 KMOD=   if_le
6 SRCS=   am7990.c am79900.c ${if_le_cbus} ${if_le_isa} ${if_le_lebuffer}
7 SRCS+=  ${if_le_ledma} if_le_pci.c lance.c ${lebuffer_sbus}
8 SRCS+=  bus_if.h device_if.h ${isa_if} ${ofw_bus_if} pci_if.h
9
10 .if ${MACHINE_CPUARCH} == "i386"
11 .if ${MACHINE} == "pc98"
12 if_le_cbus=     if_le_cbus.c
13 .else
14 if_le_isa=      if_le_isa.c
15 .endif
16 isa_if=         isa_if.h
17 .endif
18
19 .if ${MACHINE} == "sparc64"
20 if_le_lebuffer= if_le_lebuffer.c
21 if_le_ledma=    if_le_ledma.c
22 lebuffer_sbus=  lebuffer_sbus.c
23 ofw_bus_if=     ofw_bus_if.h
24 .endif
25
26 .include <bsd.kmod.mk>