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