Makefile revision 123959
1183724Ssos# $FreeBSD: head/sys/modules/sio/Makefile 123959 2003-12-29 08:35:33Z bde $
2183724Ssos
3183724Ssos.if ${MACHINE} == "pc98"
4183724Ssos.PATH: ${.CURDIR}/../../pc98/pc98
5183724Ssos.endif
6183724Ssos.PATH: ${.CURDIR}/../../dev/sio
7249213Smarius
8183724SsosKMOD=	sio
9183724SsosSRCS=	sio.c sio_pccard.c sio_pci.c sio_puc.c
10SRCS+=	opt_sio.h opt_ddb.h opt_compat.h opt_comconsole.h \
11	bus_if.h card_if.h device_if.h isa_if.h pci_if.h
12
13.if ${MACHINE} == "pc98"
14SRCS+=	sio_cbus.c
15.else
16SRCS+=	sio_isa.c
17.endif
18.if ${MACHINE} == "sparc64"
19### untested
20SRCS+=	sio_ebus.c
21.endif
22
23opt_compat.h:
24	@echo '#define COMPAT_43 1' > opt_compat.h
25	@echo '#define COMPAT_FREEBSD4 1' >> opt_compat.h
26
27.if ${MACHINE} == "pc98"
28opt_sio.h:
29	@echo '#define COM_MULTIPORT 1' > opt_sio.h
30	@echo '#define COM_ESP 1' >> opt_sio.h
31.endif
32
33.include <bsd.kmod.mk>
34