scc

simple c99 compiler
git clone git://git.simple-cc.org/scc
Log | Files | Refs | README | LICENSE

commit e62db67e3da88d0e908dd58d9e7688c1c0791bc1
parent f32b47792675b766275a003f4a644973d72f89e7
Author: Roberto E. Vargas Caballero <k0ga@shike2.net>
Date:   Wed,  6 May 2026 21:19:35 +0200

build: Cover Add coverage to top Makefile

The coverage target is defined in the gcov toolchain, but it needs to be
populated in the top level Makefile in order to be used.

Diffstat:
MMakefile | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Makefile b/Makefile @@ -11,7 +11,7 @@ deps: scripts/scc-make +@$(SCCMAKE) dep touch $@;\ -all dep tests install uninstall: scripts/scc-make check_config FORCE +coverage all dep tests install uninstall: scripts/scc-make check_config FORCE +@$(SCCMAKE) -f main.mk $@ check_config: scripts/scc-make FORCE