diff options
author | Navdeep Parhar <np@FreeBSD.org> | 2014-08-01 01:30:16 +0000 |
---|---|---|
committer | Navdeep Parhar <np@FreeBSD.org> | 2014-08-01 01:30:16 +0000 |
commit | 88998d7afc82b84b338fd40d5d049ac6b2b1c793 (patch) | |
tree | 4101324a484a5ae139286338bdc75a1e357d9137 /sys/modules/cxgbe/t4_firmware | |
parent | 4eeeb4a12a0c3a855361653b432b666aff3b3d93 (diff) | |
download | src-88998d7afc82b84b338fd40d5d049ac6b2b1c793.tar.gz src-88998d7afc82b84b338fd40d5d049ac6b2b1c793.zip |
Improve compliance with style.Makefile(5).
MFC after: 2 weeks
Notes
Notes:
svn path=/head/; revision=269364
Diffstat (limited to 'sys/modules/cxgbe/t4_firmware')
-rw-r--r-- | sys/modules/cxgbe/t4_firmware/Makefile | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/sys/modules/cxgbe/t4_firmware/Makefile b/sys/modules/cxgbe/t4_firmware/Makefile index ef3bc8b02d86..de2b601165a1 100644 --- a/sys/modules/cxgbe/t4_firmware/Makefile +++ b/sys/modules/cxgbe/t4_firmware/Makefile @@ -2,24 +2,24 @@ # $FreeBSD$ # -T4FW = ${.CURDIR}/../../../dev/cxgbe/firmware +T4FW= ${.CURDIR}/../../../dev/cxgbe/firmware .PATH: ${T4FW} -KMOD = t4fw_cfg -FIRMWS = ${KMOD}.txt:${KMOD}:1.0.0.0 +KMOD= t4fw_cfg +FIRMWS= ${KMOD}.txt:${KMOD}:1.0.0.0 # You can have additional configuration files in the ${T4FW} directory. # t4fw_cfg_<name>.txt CFG_FILES != cd ${T4FW} && echo ${KMOD}_*.txt .for F in ${CFG_FILES} .if exists(${F}) -FIRMWS += ${F}:${F:C/.txt//}:1.0.0.0 +FIRMWS+= ${F}:${F:C/.txt//}:1.0.0.0 .endif .endfor -T4FW_VER = 1.11.27.0 -FIRMWS += t4fw.fw:t4fw:${T4FW_VER} -CLEANFILES += t4fw.fw +T4FW_VER= 1.11.27.0 +FIRMWS+= t4fw.fw:t4fw:${T4FW_VER} +CLEANFILES+= t4fw.fw t4fw.fw: t4fw-${T4FW_VER}.bin.uu uudecode -o ${.TARGET} ${.ALLSRC} |