freebsd-src/sys/modules/fdc/Makefile
Yoshihiro Takahashi d5103548b4 - Merged from sys/dev/fdc/fdc.c revision 1.275.
- Break out the cbus front end from fd.c.
- Remove the pccard support because it was broken.
2004-07-08 13:56:17 +00:00

25 lines
439 B
Makefile

# $FreeBSD$
.if ${MACHINE} == "pc98"
.PATH: ${.CURDIR}/../../pc98/pc98
.else
.PATH: ${.CURDIR}/../../dev/fdc
.endif
KMOD= fdc
.if ${MACHINE} == "pc98"
SRCS= fd.c fdc_cbus.c
.else
SRCS= fdc.c fdc_isa.c fdc_pccard.c
.endif
SRCS+= opt_fdc.h bus_if.h card_if.h device_if.h isa_if.h pccarddevs.h
FDC_DEBUG?= 0 # 0/1
opt_fdc.h:
touch ${.TARGET}
.if ${FDC_DEBUG} > 0
echo "#define FDC_DEBUG 1" >> ${.TARGET}
.endif
.include <bsd.kmod.mk>