mirror of
https://github.com/opnsense/src.git
synced 2026-02-11 23:06:12 -05:00
- Add stubs for EISA and SBUS cards. (VME, FutureBUS, and TurboChannel stubs not provided.) - Add infrastructure to build driver and bus front-end modules.
15 lines
181 B
Makefile
15 lines
181 B
Makefile
# $FreeBSD$
|
|
|
|
SUBDIR= hfa pci
|
|
|
|
.ifdef notyet
|
|
.if ${MACHINE_ARCH} == "i386"
|
|
SUBDIR+=eisa
|
|
.endif
|
|
|
|
.if ${MACHINE_ARCH} == "sparc64"
|
|
SUBDIR+=sbus
|
|
.endif
|
|
.endif
|
|
|
|
.include <bsd.subdir.mk>
|