Deleted Added
full compact
Makefile (123935) Makefile (123959)
1# $FreeBSD: head/sys/modules/sio/Makefile 123935 2003-12-28 12:27:34Z nyan $
1# $FreeBSD: head/sys/modules/sio/Makefile 123959 2003-12-29 08:35:33Z bde $
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
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
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
10
12
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
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
20
22
23opt_compat.h:
24 @echo '#define COMPAT_43 1' > opt_compat.h
25 @echo '#define COMPAT_FREEBSD4 1' >> opt_compat.h
26
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
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
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>
33.include <bsd.kmod.mk>