freebsd-dev/sys/modules/fdc/Makefile

25 lines
439 B
Makefile
Raw Normal View History

# $FreeBSD$
2001-09-16 12:40:20 +00:00
.if ${MACHINE} == "pc98"
.PATH: ${.CURDIR}/../../pc98/pc98
.else
.PATH: ${.CURDIR}/../../dev/fdc
2001-09-16 12:40:20 +00:00
.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>