mirror of
https://github.com/opnsense/src.git
synced 2026-02-25 19:05:20 -05:00
create an option that defaults to "no" on all platforms to not build the EISA bits. Discussed on: arch@
14 lines
227 B
Makefile
14 lines
227 B
Makefile
# $FreeBSD$
|
|
|
|
.include <bsd.own.mk>
|
|
|
|
.PATH: ${.CURDIR}/../../dev/vx
|
|
|
|
KMOD= if_vx
|
|
SRCS= if_vx.c if_vx_pci.c
|
|
.if ${MK_EISA} != "no"
|
|
SRCS+= if_vx_eisa.c
|
|
.endif
|
|
SRCS+= device_if.h bus_if.h pci_if.h eisa_if.h
|
|
|
|
.include <bsd.kmod.mk>
|