10687779a9
to build a module. A repo-copy is not done because it has no important logs. Pointed out by: ru
19 lines
287 B
Makefile
19 lines
287 B
Makefile
# $FreeBSD$
|
|
|
|
.PATH: ${.CURDIR}/../../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>
|