Makefile revision 319182
1# $FreeBSD: stable/11/sys/modules/apm/Makefile 319182 2017-05-30 04:11:12Z ngie $
2
3.PATH: ${SRCTOP}/sys/i386/bios
4.if ${MACHINE} == "pc98"
5.PATH: ${.CURDIR}/../../pc98/apm
6.endif
7
8KMOD=	apm
9SRCS=	apm.c apm.h
10.if ${MACHINE} == "pc98"
11SRCS+=	apm_bioscall.S
12.endif
13SRCS+=	device_if.h bus_if.h
14
15EXPORT_SYMS=	apm_display	\
16		apm_softc
17
18.include <bsd.kmod.mk>
19