mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
Unbreak the fdc module build after the repocopy of sys/isa/fd.c to
sys/dev/fdc/fdc.c.
This commit is contained in:
parent
d04b5dfe6c
commit
a6af156093
1 changed files with 7 additions and 3 deletions
|
|
@ -3,12 +3,16 @@
|
|||
.if ${MACHINE} == "pc98"
|
||||
.PATH: ${.CURDIR}/../../pc98/pc98
|
||||
.else
|
||||
.PATH: ${.CURDIR}/../../isa
|
||||
.PATH: ${.CURDIR}/../../dev/fdc
|
||||
.endif
|
||||
|
||||
KMOD= fdc
|
||||
SRCS= fd.c \
|
||||
opt_fdc.h card.h \
|
||||
.if ${MACHINE} == "pc98"
|
||||
SRCS= fd.c
|
||||
.else
|
||||
SRCS= fdc.c
|
||||
.endif
|
||||
SRCS+= opt_fdc.h card.h \
|
||||
bus_if.h card_if.h device_if.h isa_if.h
|
||||
|
||||
FDC_DEBUG?= 0 # 0/1
|
||||
|
|
|
|||
Loading…
Reference in a new issue