mirror of
https://github.com/opnsense/src.git
synced 2026-02-15 00:34:33 -05:00
15 lines
198 B
Makefile
15 lines
198 B
Makefile
|
|
# $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>
|