citrun

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

commit bf955e81cb6a9712fd4dbd18bb3c2ba982167fab
parent c6373b6ff4d2af336a8d9918ea547ddd1ba0ddea
Author: Kyle Milz <krwmilz@gmail.com>
Date:   Fri, 24 Feb 2023 05:09:51 +0000

make: add tags and analysis targets

Diffstat:
MMakefile.inc | 8++++++++
1 file changed, 8 insertions(+), 0 deletions(-)

diff --git a/Makefile.inc b/Makefile.inc @@ -44,3 +44,11 @@ LDFLAGS += -v -fprofile-instr-generate PREFIX ?!= readlink -f ${.CURDIR}/.. CPPFLAGS += -I../include + +tags: ${SRCS} + ctags -d *.c *.cc *.h + +analysis: + make clean + scan-build make +