50b464aa1a
drivers and their firmware were under active development, but those days have passed. The firmware now exists in pre-compiled form, no longer dependent on it's sources or on aicasm. If you wish to rebuild the firmware from source, the glue still exists under the 'make firmware' target in sys/modules/aic7xxx. This also fixes the problem introduced with r257777 et al with building kernels the old fashioned way in sys/$arch/compile/$CONFIG when the ahc/ahd drivers were included.
23 lines
434 B
Makefile
23 lines
434 B
Makefile
|
|
# $FreeBSD$
|
|
|
|
SUBDIR= ahc ahd
|
|
|
|
firmware: aicasm/aicasm ahdfirmware ahcfirmware
|
|
|
|
aicasm/aicasm:
|
|
( cd ${.CURDIR}/aicasm ; ${MAKE} aicasm )
|
|
|
|
ahdfirmware:
|
|
( cd ${.CURDIR}/ahd ; ${MAKE} ahdfirmware )
|
|
|
|
ahcfirmware:
|
|
( cd ${.CURDIR}/ahc ; ${MAKE} ahcfirmware )
|
|
|
|
cleanfirmware:
|
|
( cd .${CURDIR}/aicasm ; ${MAKE} clean )
|
|
( cd .${CURDIR}/ahc ; ${MAKE} cleanfirmware )
|
|
( cd .${CURDIR}/ahd ; ${MAKE} cleanfirmware )
|
|
|
|
.include <bsd.subdir.mk>
|