13 lines
271 B
Makefile
13 lines
271 B
Makefile
.include <bsd.own.mk>
|
|
|
|
.if ${MACHINE_ARCH} == "i386"
|
|
SUBDIR+= acpi
|
|
.endif # ${MACHINE_ARCH} == "i386"
|
|
|
|
.if ( (${MACHINE_ARCH} == "earm") || (${MACHINE_ARCH} == "earmv6hf") )
|
|
SUBDIR+= tps65217
|
|
SUBDIR+= tps65950
|
|
.endif # ${MACHINE_ARCH} == "earm"
|
|
|
|
.include <bsd.subdir.mk>
|