citrun

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

commit 8bc389f729ca098bd18facfb4d9cb5898f7cd8f0
parent 0a076583a95a659dc76161e80fccca8d017f4ade
Author: Kyle Milz <milz@macbook.0x30.net>
Date:   Mon, 20 Jul 2020 13:40:48 -0700

delete old Jamfile

Diffstat:
Dbin/Jamfile | 84-------------------------------------------------------------------------------
1 file changed, 0 insertions(+), 84 deletions(-)

diff --git a/bin/Jamfile b/bin/Jamfile @@ -1,84 +0,0 @@ -SubDir TOP bin ; -SubDirHdrs $(TOP) lib ; - -# -# citrun_report -# -SHELLHEADER on citrun_report = "#!/usr/bin/awk -f" ; -MakeLocate citrun_report : bin ; -Shell citrun_report : report.awk ; - -# -# citrun_wrap -# -MakeLocate citrun_wrap : bin ; -Shell citrun_wrap : wrap.sh ; -ReplacePrefix citrun_wrap ; - -# -# citrun_inst -# -INST_SRCS = - inst_main.cc - inst_fe.cc - inst_feunix.cc - inst_action.cc - inst_visitor.cc ; - -ObjectC++Flags $(INST_SRCS) : `llvm-config --cppflags` -DPREFIX=\\\"$(PREFIX)\\\" ; - -LINKFLAGS on citrun_inst = $(LINKFLAGS) ; -LINKLIBS on citrun_inst += - `llvm-config --ldflags` - $(INST_EXTRALIB) - -lclangTooling - -lclangFrontendTool - -lclangFrontend - -lclangDriver - -lclangSerialization - -lclangCodeGen - -lclangParse - -lclangSema - -lclangAnalysis - -lclangRewrite - -lclangRewriteFrontend - -lclangEdit - -lclangAST - -lclangLex - -lclangBasic - -lLLVM - ; - -Main citrun_inst : $(INST_SRCS) ; - -# -# citrun_gl -# -GL_SRCS = - gl.cc - gl_atlas.cc - gl_buffer.cc - gl_font.cc - gl_main.cc - gl_runtime.cc - gl_shader.cc - gl_state.cc - gl_view.cc - matrix4x4.c ; - -Stringize gl_atlas_glsl.h : gl_atlas.glsl ; -Stringize gl_vshader_glsl.h : gl_vshader.glsl ; -Stringize gl_fshader_glsl.h : gl_fshader.glsl ; - -ObjectC++Flags $(GL_SRCS) : `pkg-config --cflags $(gl_pkgs)` ; - -LINKFLAGS on citrun_gl = $(LINKFLAGS) ; -LINKLIBS on citrun_gl += -lm $(GL_EXTRALIB) `pkg-config --libs $(gl_pkgs)` ; - -Main citrun_gl : $(GL_SRCS) ; - -# -# install -# -InstallShell $(PREFIX)/bin : citrun_report citrun_wrap ; -InstallBin $(PREFIX)/bin : citrun_gl citrun_inst ;