18 lines
355 B
Makefile
18 lines
355 B
Makefile
|
.include <bsd.own.mk>
|
||
|
|
||
|
.if ${MKIMAGEONLY} == "no"
|
||
|
. if ${MACHINE_ARCH} == "i386"
|
||
|
SUBDIR+= ti1225
|
||
|
. endif # ${MACHINE_ARCH} == "i386"
|
||
|
|
||
|
. if ${MACHINE_ARCH} == "earm"
|
||
|
SUBDIR+= i2c
|
||
|
. endif # ${MACHINE_ARCH} == "earm"
|
||
|
.endif # ${MKIMAGEONLY} == "no"
|
||
|
|
||
|
.if ${MACHINE_ARCH} == "i386"
|
||
|
SUBDIR+= pci
|
||
|
.endif # ${MACHINE_ARCH} == "i386"
|
||
|
|
||
|
.include <bsd.subdir.mk>
|