Makefile revision 123935
1# $FreeBSD: head/sys/modules/sio/Makefile 123935 2003-12-28 12:27:34Z nyan $
2
3.if ${MACHINE} == "pc98"
4.PATH: ${.CURDIR}/../../pc98/pc98
5.endif
6.PATH: ${.CURDIR}/../../dev/sio
7
8KMOD=	sio
9SRCS=	sio.c sio_pccard.c sio_pci.c sio_puc.c
10
11.if ${MACHINE} == "sparc64"
12### untested
13SRCS+=	sio_ebus.c
14.endif
15.if ${MACHINE} == "pc98"
16SRCS+=	sio_cbus.c
17.else
18SRCS+=	sio_isa.c
19.endif
20
21.if ${MACHINE} == "pc98"
22opt_sio.h:
23	@echo '#define COM_MULTIPORT 1' > opt_sio.h
24	@echo '#define COM_ESP 1' >> opt_sio.h
25.endif
26
27opt_compat.h:
28	@echo '#define COMPAT_43 1' > opt_compat.h
29	@echo '#define COMPAT_FREEBSD4 1' >> opt_compat.h
30
31SRCS+=	opt_sio.h opt_ddb.h opt_compat.h opt_comconsole.h \
32	bus_if.h card_if.h device_if.h isa_if.h pci_if.h
33
34.include <bsd.kmod.mk>
35