mirror of
https://github.com/opnsense/src.git
synced 2026-06-09 16:50:25 -04:00
18 lines
284 B
Makefile
18 lines
284 B
Makefile
# $FreeBSD$
|
|
|
|
.PATH: ${SRCTOP}/sys/i386/bios
|
|
.if ${MACHINE} == "pc98"
|
|
.PATH: ${.CURDIR}/../../pc98/apm
|
|
.endif
|
|
|
|
KMOD= apm
|
|
SRCS= apm.c apm.h
|
|
.if ${MACHINE} == "pc98"
|
|
SRCS+= apm_bioscall.S
|
|
.endif
|
|
SRCS+= device_if.h bus_if.h
|
|
|
|
EXPORT_SYMS= apm_display \
|
|
apm_softc
|
|
|
|
.include <bsd.kmod.mk>
|