Deleted Added
full compact
Makefile (112590) Makefile (145182)
1# $FreeBSD: head/sys/modules/apm/Makefile 112590 2003-03-25 05:19:18Z mdodd $
1# $FreeBSD: head/sys/modules/apm/Makefile 145182 2005-04-17 10:41:59Z nyan $
2
3.PATH: ${.CURDIR}/../../i386/bios
2
3.PATH: ${.CURDIR}/../../i386/bios
4.if ${MACHINE} == "pc98"
5.PATH: ${.CURDIR}/../../pc98/apm
6.endif
4
5KMOD= apm
7
8KMOD= apm
6SRCS= apm.c apm.h \
7 device_if.h bus_if.h
9SRCS= apm.c apm.h
10.if ${MACHINE} == "pc98"
11SRCS+= apm_bioscall.s
12.endif
13SRCS+= device_if.h bus_if.h
8
9EXPORT_SYMS= apm_display \
10 apm_softc
11
14
15EXPORT_SYMS= apm_display \
16 apm_softc
17
18.if ${MACHINE} == "pc98"
19apm_bioscall.o: apm_bioscall.s
20 ${CC} -x assembler-with-cpp -DLOCORE ${CFLAGS} -c ${.IMPSRC}
21.endif
22
12.include <bsd.kmod.mk>
23.include <bsd.kmod.mk>