]> CyberLeo.Net >> Repos - FreeBSD/releng/9.2.git/blob - sys/modules/sio/Makefile
- Copy stable/9 to releng/9.2 as part of the 9.2-RELEASE cycle.
[FreeBSD/releng/9.2.git] / sys / modules / sio / Makefile
1 # $FreeBSD$
2
3 .if ${MACHINE} == "pc98"
4 .PATH: ${.CURDIR}/../../pc98/cbus
5 .endif
6 .PATH: ${.CURDIR}/../../dev/sio
7
8 KMOD=   sio
9 SRCS=   bus_if.h card_if.h device_if.h isa_if.h pci_if.h serdev_if.h \
10         opt_compat.h opt_gdb.h opt_kdb.h opt_sio.h \
11         sio.c sio_pccard.c sio_pci.c sio_puc.c pccarddevs.h
12 .if ${MACHINE} == "pc98"
13 SRCS+=  sio_cbus.c
14 .else
15 SRCS+=  sio_isa.c
16 .endif
17
18 .if !defined(KERNBUILDDIR)
19 opt_compat.h:
20         echo "#define COMPAT_43 1" > ${.TARGET}
21
22 .if ${MACHINE} == "pc98"
23 opt_sio.h:
24         echo "#define COM_MULTIPORT 1" > ${.TARGET}
25         echo "#define COM_ESP 1" >> ${.TARGET}
26 .endif
27 .endif
28
29 .include <bsd.kmod.mk>