Makefile (b655ec9752ee1da47110c5f0dacc0003ca55a7ad) | Makefile (53b715b5ba3f838ab20de8d3f34297c6555c7981) |
---|---|
1# $FreeBSD$ 2 3.include <bsd.init.mk> 4 | 1# $FreeBSD$ 2 3.include <bsd.init.mk> 4 |
5LIB= clang_rt.profile-${CRTARCH} | 5LIB= clang_rt.profile-${CRTARCH} |
6 | 6 |
7.PATH: ${CRTSRC}/lib/profile | 7SRCS+= profile/GCDAProfiling.c 8SRCS+= profile/InstrProfiling.c 9SRCS+= profile/InstrProfilingBuffer.c 10SRCS+= profile/InstrProfilingFile.c 11SRCS+= profile/InstrProfilingMerge.c 12SRCS+= profile/InstrProfilingMergeFile.c 13SRCS+= profile/InstrProfilingPlatformDarwin.c 14SRCS+= profile/InstrProfilingPlatformLinux.c 15SRCS+= profile/InstrProfilingPlatformOther.c 16SRCS+= profile/InstrProfilingRuntime.cc 17SRCS+= profile/InstrProfilingUtil.c 18SRCS+= profile/InstrProfilingValue.c 19SRCS+= profile/InstrProfilingWriter.c |
8 | 20 |
9SRCS= GCDAProfiling.c\ 10 InstrProfiling.c\ 11 InstrProfilingValue.c\ 12 InstrProfilingBuffer.c\ 13 InstrProfilingFile.c\ 14 InstrProfilingWriter.c\ 15 InstrProfilingPlatformDarwin.c\ 16 InstrProfilingPlatformLinux.c\ 17 InstrProfilingPlatformOther.c\ 18 InstrProfilingRuntime.cc\ 19 InstrProfilingUtil.c 20 | |
21.include <bsd.lib.mk> | 21.include <bsd.lib.mk> |