2b375b4edd
I thank all developers and contributors for pc98. Relnotes: yes
21 lines
378 B
Makefile
21 lines
378 B
Makefile
# $FreeBSD$
|
|
|
|
KMOD= fdc
|
|
|
|
.PATH: ${.CURDIR}/../../dev/fdc
|
|
SRCS= fdc.c fdc_isa.c fdc_pccard.c
|
|
.if ${MACHINE} == "i386" || ${MACHINE} == "amd64"
|
|
SRCS+= opt_acpi.h acpi_if.h fdc_acpi.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
|
|
|
|
.if ${FDC_DEBUG} > 0
|
|
echo "#define FDC_DEBUG 1" >> ${.TARGET}
|
|
.endif
|
|
|
|
.include <bsd.kmod.mk>
|