Makefile (88998d7afc82b84b338fd40d5d049ac6b2b1c793) | Makefile (df3394b3de0c40cae69e46b795dc794db3a80c2e) |
---|---|
1# 2# $FreeBSD$ 3# 4 | 1# 2# $FreeBSD$ 3# 4 |
5.include <src.opts.mk> | 5SYSDIR?=${.CURDIR}/../.. 6.include "${SYSDIR}/conf/kern.opts.mk" |
6 7SUBDIR= if_cxgbe 8SUBDIR+= t4_firmware 9SUBDIR+= t5_firmware 10SUBDIR+= ${_tom} 11SUBDIR+= ${_iw_cxgbe} 12 13.if ${MACHINE_CPUARCH} == "amd64" 14_tom= tom 15.if ${MK_OFED} != "no" || defined(ALL_MODULES) 16_iw_cxgbe= iw_cxgbe 17.endif 18.endif 19 20.if ${MACHINE_CPUARCH} == "i386" 21_tom= tom 22.endif 23 24.include <bsd.subdir.mk> | 7 8SUBDIR= if_cxgbe 9SUBDIR+= t4_firmware 10SUBDIR+= t5_firmware 11SUBDIR+= ${_tom} 12SUBDIR+= ${_iw_cxgbe} 13 14.if ${MACHINE_CPUARCH} == "amd64" 15_tom= tom 16.if ${MK_OFED} != "no" || defined(ALL_MODULES) 17_iw_cxgbe= iw_cxgbe 18.endif 19.endif 20 21.if ${MACHINE_CPUARCH} == "i386" 22_tom= tom 23.endif 24 25.include <bsd.subdir.mk> |