d111c7844e
This uses the new layout of the upstream repository, which was recently migrated to GitHub, and converted into a "monorepo". That is, most of the earlier separate sub-projects with their own branches and tags were consolidated into one top-level directory, and are now branched and tagged together. Updating the vendor area to match this layout is next.
21 lines
366 B
Makefile
21 lines
366 B
Makefile
# $FreeBSD$
|
|
|
|
PROG_CXX= llvm-xray
|
|
MAN=
|
|
|
|
SRCDIR= llvm/tools/llvm-xray
|
|
SRCS+= func-id-helper.cpp
|
|
SRCS+= llvm-xray.cpp
|
|
SRCS+= xray-account.cpp
|
|
SRCS+= xray-color-helper.cpp
|
|
SRCS+= xray-converter.cpp
|
|
SRCS+= xray-extract.cpp
|
|
SRCS+= xray-graph-diff.cpp
|
|
SRCS+= xray-graph.cpp
|
|
SRCS+= xray-registry.cpp
|
|
SRCS+= xray-stacks.cpp
|
|
|
|
LIBADD+= z
|
|
|
|
.include "../llvm.prog.mk"
|