citrun

watch C/C++ source code execute
Log | Files | Refs | LICENSE

commit e95435eaa83f030912f66f81688305de69cf5bd4
parent 95cb7ccf8685d95450cae5414832d32ce5313de4
Author: Kyle Milz <kyle@getaddrinfo.net>
Date:   Mon, 21 Mar 2016 20:22:29 -0600

instrument: don't know how to mkdep here properly

Diffstat:
Minstrument/Makefile | 5+++++
1 file changed, 5 insertions(+), 0 deletions(-)

diff --git a/instrument/Makefile b/instrument/Makefile @@ -1,6 +1,8 @@ PROG = scv_instrument SRCS = main.cc instrumenter.cc +MKDEP = `llvm-config --cppflags` + CXXFLAGS += -std=c++11 CXXFLAGS += `llvm-config --cxxflags` LDFLAGS += `llvm-config --ldflags` @@ -25,4 +27,7 @@ LDADD += -Wl,--start-group \ LDADD += `llvm-config --libs bitreader mcparser transformutils option --system-libs` +depend: + # fucking thing doesn't work + .include <bsd.prog.mk>