mirror of
https://github.com/opnsense/src.git
synced 2026-03-01 21:01:24 -05:00
- Break out the cbus front end from fd.c. - Remove the pccard support because it was broken.
24 lines
439 B
Makefile
24 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>
|