citrun

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

commit 6cbf5621f7aefc1ff76829f0ca66181a05ddfa06
parent a672a7767d1585e12c31b4828df7a6a4c9d98c7b
Author: Kyle Milz <milz@imac.0x30.net>
Date:   Sat, 27 Feb 2021 11:03:39 -0800

Revert "move bin/ and lib/ source files to root directory"

This reverts commit a672a7767d1585e12c31b4828df7a6a4c9d98c7b.

Diffstat:
Rdemo-common.h -> bin/demo-common.h | 0
Rdraw.h -> bin/draw.h | 0
Rgl.cc -> bin/gl.cc | 0
Rgl_atlas.cc -> bin/gl_atlas.cc | 0
Rgl_atlas.glsl -> bin/gl_atlas.glsl | 0
Rgl_atlas.h -> bin/gl_atlas.h | 0
Rgl_buffer.cc -> bin/gl_buffer.cc | 0
Rgl_buffer.h -> bin/gl_buffer.h | 0
Rgl_font.cc -> bin/gl_font.cc | 0
Rgl_font.h -> bin/gl_font.h | 0
Rgl_fshader.glsl -> bin/gl_fshader.glsl | 0
Rgl_main.cc -> bin/gl_main.cc | 0
Rgl_main.h -> bin/gl_main.h | 0
Rgl_runtime.cc -> bin/gl_runtime.cc | 0
Rgl_runtime.h -> bin/gl_runtime.h | 0
Rgl_shader.cc -> bin/gl_shader.cc | 0
Rgl_shader.h -> bin/gl_shader.h | 0
Rgl_state.cc -> bin/gl_state.cc | 0
Rgl_state.h -> bin/gl_state.h | 0
Rgl_view.cc -> bin/gl_view.cc | 0
Rgl_view.h -> bin/gl_view.h | 0
Rgl_vshader.glsl -> bin/gl_vshader.glsl | 0
Rinst_action.cc -> bin/inst_action.cc | 0
Rinst_action.h -> bin/inst_action.h | 0
Rinst_consumer.h -> bin/inst_consumer.h | 0
Rinst_fe.cc -> bin/inst_fe.cc | 0
Rinst_fe.h -> bin/inst_fe.h | 0
Rinst_feunix.cc -> bin/inst_feunix.cc | 0
Rinst_feunix.h -> bin/inst_feunix.h | 0
Rinst_fewin32.cc -> bin/inst_fewin32.cc | 0
Rinst_fewin32.h -> bin/inst_fewin32.h | 0
Rinst_log.h -> bin/inst_log.h | 0
Rinst_main.cc -> bin/inst_main.cc | 0
Rinst_visitor.cc -> bin/inst_visitor.cc | 0
Rinst_visitor.h -> bin/inst_visitor.h | 0
Rmatrix4x4.c -> bin/matrix4x4.c | 0
Rmatrix4x4.h -> bin/matrix4x4.h | 0
Rmem.h -> bin/mem.h | 0
Rmem_unix.h -> bin/mem_unix.h | 0
Rreport.awk -> bin/report.awk | 0
Rterm.cc -> bin/term.cc | 0
Rwrap.sh -> bin/wrap.sh | 0
Alib/Jamfile | 8++++++++
Rcitrun.c -> lib/citrun.c | 0
Rcitrun.h -> lib/citrun.h | 0
Ros.h -> lib/os.h | 0
Runix.c -> lib/unix.c | 0
Rwin32.c -> lib/win32.c | 0
48 files changed, 8 insertions(+), 0 deletions(-)

diff --git a/demo-common.h b/bin/demo-common.h diff --git a/draw.h b/bin/draw.h diff --git a/gl.cc b/bin/gl.cc diff --git a/gl_atlas.cc b/bin/gl_atlas.cc diff --git a/gl_atlas.glsl b/bin/gl_atlas.glsl diff --git a/gl_atlas.h b/bin/gl_atlas.h diff --git a/gl_buffer.cc b/bin/gl_buffer.cc diff --git a/gl_buffer.h b/bin/gl_buffer.h diff --git a/gl_font.cc b/bin/gl_font.cc diff --git a/gl_font.h b/bin/gl_font.h diff --git a/gl_fshader.glsl b/bin/gl_fshader.glsl diff --git a/gl_main.cc b/bin/gl_main.cc diff --git a/gl_main.h b/bin/gl_main.h diff --git a/gl_runtime.cc b/bin/gl_runtime.cc diff --git a/gl_runtime.h b/bin/gl_runtime.h diff --git a/gl_shader.cc b/bin/gl_shader.cc diff --git a/gl_shader.h b/bin/gl_shader.h diff --git a/gl_state.cc b/bin/gl_state.cc diff --git a/gl_state.h b/bin/gl_state.h diff --git a/gl_view.cc b/bin/gl_view.cc diff --git a/gl_view.h b/bin/gl_view.h diff --git a/gl_vshader.glsl b/bin/gl_vshader.glsl diff --git a/inst_action.cc b/bin/inst_action.cc diff --git a/inst_action.h b/bin/inst_action.h diff --git a/inst_consumer.h b/bin/inst_consumer.h diff --git a/inst_fe.cc b/bin/inst_fe.cc diff --git a/inst_fe.h b/bin/inst_fe.h diff --git a/inst_feunix.cc b/bin/inst_feunix.cc diff --git a/inst_feunix.h b/bin/inst_feunix.h diff --git a/inst_fewin32.cc b/bin/inst_fewin32.cc diff --git a/inst_fewin32.h b/bin/inst_fewin32.h diff --git a/inst_log.h b/bin/inst_log.h diff --git a/inst_main.cc b/bin/inst_main.cc diff --git a/inst_visitor.cc b/bin/inst_visitor.cc diff --git a/inst_visitor.h b/bin/inst_visitor.h diff --git a/matrix4x4.c b/bin/matrix4x4.c diff --git a/matrix4x4.h b/bin/matrix4x4.h diff --git a/mem.h b/bin/mem.h diff --git a/mem_unix.h b/bin/mem_unix.h diff --git a/report.awk b/bin/report.awk diff --git a/term.cc b/bin/term.cc diff --git a/wrap.sh b/bin/wrap.sh diff --git a/lib/Jamfile b/lib/Jamfile @@ -0,0 +1,8 @@ +SubDir TOP lib ; + +Stringize citrun_h.h : citrun.h ; + +ObjectCcFlags citrun.c unix.c : -fPIC -ansi ; +Library libcitrun : citrun.c unix.c ; + +InstallLib $(PREFIX)/lib : libcitrun.a ; diff --git a/citrun.c b/lib/citrun.c diff --git a/citrun.h b/lib/citrun.h diff --git a/os.h b/lib/os.h diff --git a/unix.c b/lib/unix.c diff --git a/win32.c b/lib/win32.c