17d6c63672
Not objected to by: -current
18 lines
250 B
Makefile
18 lines
250 B
Makefile
# $FreeBSD$
|
|
|
|
.if ${MACHINE} == "pc98"
|
|
.PATH: ${.CURDIR}/../../pc98/apm
|
|
CFLAGS+= -DPC98
|
|
.else
|
|
.PATH: ${.CURDIR}/../../i386/apm
|
|
.endif
|
|
|
|
KMOD= apm
|
|
SRCS= apm.c apm.h \
|
|
device_if.h bus_if.h
|
|
|
|
EXPORT_SYMS= apm_display \
|
|
apm_softc
|
|
|
|
.include <bsd.kmod.mk>
|