1# $FreeBSD$ 2 3.include <bsd.init.mk> 4 5LIB= clang_rt.profile-${CRTARCH} 6 7# This is needed for --coverage 8CFLAGS+= -fvisibility=default 9 10SRCS+= profile/GCDAProfiling.c 11SRCS+= profile/InstrProfiling.c 12SRCS+= profile/InstrProfilingBuffer.c 13SRCS+= profile/InstrProfilingFile.c 14SRCS+= profile/InstrProfilingMerge.c 15SRCS+= profile/InstrProfilingMergeFile.c 16SRCS+= profile/InstrProfilingPlatformDarwin.c 17SRCS+= profile/InstrProfilingPlatformLinux.c 18SRCS+= profile/InstrProfilingPlatformOther.c 19SRCS+= profile/InstrProfilingRuntime.cc 20SRCS+= profile/InstrProfilingUtil.c 21SRCS+= profile/InstrProfilingValue.c 22SRCS+= profile/InstrProfilingWriter.c 23 24.include <bsd.lib.mk> 25