citrun

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

commit a06a69f44fa160ffd014e59f197f21794c4c841f
parent 31802ca8533d2641e1446791b5f24ec1adb29ad0
Author: Kyle Milz <kyle@0x30.net>
Date:   Mon, 29 Aug 2016 18:33:29 -0600

src: unlink citrun-dump from build + 2 other misc changes

Diffstat:
Msrc/Jamfile | 17++++++-----------
1 file changed, 6 insertions(+), 11 deletions(-)

diff --git a/src/Jamfile b/src/Jamfile @@ -3,11 +3,11 @@ SubDir TOP src ; # # libcitrun.a and utils.a # -ObjectCcFlags runtime.c : -fPIC -ansi ; +ObjectCcFlags runtime.c : -fPIC -ansi -pedantic ; Library libcitrun : runtime.c ; Library utils : shm.cc process_file.cc process_dir.cc ; -LinkLibraries citrun-dump citrun-term citrun-gl : utils ; +LinkLibraries citrun-term citrun-gl : utils ; # # citrun-wrap, citrun-check @@ -19,11 +19,6 @@ Shell citrun-wrap : wrap.in ; ReplaceTokens citrun-wrap ; # -# citrun-dump (not installed) -# -Main citrun-dump : dump_main.cc ; - -# # citrun-term # LINKLIBS on citrun-term += -lcurses ; @@ -80,9 +75,9 @@ Main citrun-inst : $(INST_SRCS) ; # # install # -InstallLib $(PREFIX)/share/citrun : libcitrun.a ; -InstallShell $(PREFIX)/bin : citrun-wrap citrun-check ; -InstallBin $(PREFIX)/bin : citrun-term citrun-gl citrun-inst ; -InstallSyms $(PREFIX)/share/citrun : cc gcc clang clang++ g++ c++ egcc eg++ ; +InstallLib $(PREFIX)/share/citrun : libcitrun.a ; +InstallShell $(PREFIX)/bin : citrun-wrap citrun-check ; +InstallBin $(PREFIX)/bin : citrun-term citrun-gl citrun-inst ; +InstallSyms $(PREFIX)/share/citrun : cc gcc clang clang++ g++ c++ egcc eg++ ; SubInclude TOP src glyphy ;