scc

simple C compiler
git clone git://git.2f30.org/scc
Log | Files | Refs | README | LICENSE

commit 6889be0333447b2730cac2dd6044286b68362f6c
parent 27eef79198f2fed4f2881f4f8d4264c1ddfabae0
Author: Roberto E. Vargas Caballero <k0ga@shike2.com>
Date:   Mon, 23 Jan 2017 17:33:02 +0100

[tests] Add makefile to run tests

Diffstat:
Atests/execute/Makefile | 6++++++
1 file changed, 6 insertions(+), 0 deletions(-)

diff --git a/tests/execute/Makefile b/tests/execute/Makefile @@ -0,0 +1,6 @@ + +all: tests + +tests: + SCCEXECPATH=../../bin PATH=../../bin:$$PATH ./chktest.sh `cat scc-tests.lst` +