freebsd-dev/sys/modules/aic7xxx/Makefile

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

23 lines
434 B
Makefile
Raw Normal View History

# $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>