blob: 4cc68c1f9c6d9449fe4c51cba018d1f5cfb35325 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
# $FreeBSD$
.PATH: ${.CURDIR}/../../dev/mse
KMOD= mse
SRCS= mse.c device_if.h bus_if.h isa_if.h
.if (${MACHINE} == "pc98")
SRCS+= mse_cbus.c
.else
SRCS+= mse_isa.c
.endif
.include <bsd.kmod.mk>
|