mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
20 lines
421 B
Makefile
20 lines
421 B
Makefile
|
|
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>
|