]> CyberLeo.Net >> Repos - FreeBSD/releng/9.2.git/blob - sys/modules/apm/Makefile
- Copy stable/9 to releng/9.2 as part of the 9.2-RELEASE cycle.
[FreeBSD/releng/9.2.git] / sys / modules / apm / Makefile
1 # $FreeBSD$
2
3 .PATH: ${.CURDIR}/../../i386/bios
4 .if ${MACHINE} == "pc98"
5 .PATH: ${.CURDIR}/../../pc98/apm
6 .endif
7
8 KMOD=   apm
9 SRCS=   apm.c apm.h
10 .if ${MACHINE} == "pc98"
11 SRCS+=  apm_bioscall.S
12 .endif
13 SRCS+=  device_if.h bus_if.h
14
15 EXPORT_SYMS=    apm_display     \
16                 apm_softc
17
18 .include <bsd.kmod.mk>