commit fdad18573b5d1d1216e7f0343c2702b45a0aeb6e parent 33ec807cd164b58b7f72b10b39d9a764d4f0dfbb Author: Roberto E. Vargas Caballero <k0ga@shike2.net> Date: Sat, 11 Apr 2026 19:35:00 +0200 tests/cc: Use $(SCC) for the compiler Diffstat:
| M | tests/cc/execute/Makefile | | | 7 | +++++-- |
1 file changed, 5 insertions(+), 2 deletions(-)
diff --git a/tests/cc/execute/Makefile b/tests/cc/execute/Makefile @@ -1,7 +1,10 @@ .POSIX: -ROOT=../../.. -CC=$(SHELL) $(ROOT)/bin/scc cc +PROJECTDIR = ../../.. +include $(PROJECTDIR)/scripts/rules.mk + +CC=$(SCC) +PROJ_CFLAGS = $(CFLAGS) all: @CC='$(CC)' ./runtests.sh scc-tests.lst