5252514fb4
MK_<FOO> isn't used in lib/libcompiler_rt/Makefile at all. Remove it to reduce namespace pollution. MFC after: 1 week
22 lines
477 B
Makefile
22 lines
477 B
Makefile
# $FreeBSD$
|
|
|
|
.if ${MACHINE_CPUARCH} == "i386" || ${MACHINE_CPUARCH} == "amd64"
|
|
SUBDIR+= include
|
|
SUBDIR+= asan
|
|
SUBDIR+= asan-preinit
|
|
SUBDIR+= asan_dynamic
|
|
SUBDIR+= asan_cxx
|
|
SUBDIR+= safestack
|
|
SUBDIR+= stats
|
|
SUBDIR+= stats_client
|
|
SUBDIR+= ubsan_standalone
|
|
SUBDIR+= ubsan_standalone_cxx
|
|
.endif
|
|
|
|
.if ${MACHINE_CPUARCH} == "i386" || ${MACHINE_CPUARCH} == "amd64" || \
|
|
(${MACHINE_CPUARCH} == "arm" && ${MACHINE_ARCH} != "armeb")
|
|
SUBDIR+= profile
|
|
.endif
|
|
|
|
.include <bsd.subdir.mk>
|