citrun

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

commit 9e3a3adfae7974a54832f4032b6ea9d9b2f5a028
parent 0fce2d4558fbf9c957ea9a71e7dddbeaca897fdf
Author: Kyle Milz <milz@imac.0x30.net>
Date:   Wed,  3 Mar 2021 22:09:11 -0800

man/share: add Makefiles

Diffstat:
Aman/Makefile | 1+
Ashare/Makefile | 9+++++++++
2 files changed, 10 insertions(+), 0 deletions(-)

diff --git a/man/Makefile b/man/Makefile @@ -0,0 +1 @@ +.include "../Makefile.in" diff --git a/share/Makefile b/share/Makefile @@ -0,0 +1,9 @@ +COMPILERS= c++ cc clang clang++ eg++ egcc g++ gcc + +all: ${COMPILERS} + +${COMPILERS}: ../inst/citrun_inst + ln -s citrun_inst $@ + + +.include "../Makefile.in"