compiler

Unnamed Compiled Systems Language Project
git clone http://frotz.net/git/compiler.git
Log | Files | Refs

commit 1e300fe643d6e540870c5c021c8544a623e03f36
parent 8c8bedf414e94153da929751d2ac174510b81391
Author: Brian Swetland <swetland@frotz.net>
Date:   Mon,  9 Mar 2020 01:06:04 -0700

runtest: declutter the top directory

Diffstat:
MMakefile | 4++--
Rruntest.sh -> test/runtest.sh | 0
2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/Makefile b/Makefile @@ -35,10 +35,10 @@ out/risc5ins.h: src/risc5ins.txt bin/mkinstab @mkdir -p out bin/mkinstab < src/risc5ins.txt > $@ -out/test/%.txt: test/%.src bin/compiler bin/r5d ./runtest.sh +out/test/%.txt: test/%.src bin/compiler bin/r5d test/runtest.sh @mkdir -p out/test @rm -f $@ - @./runtest.sh $< $@ + @test/runtest.sh $< $@ SRCTESTS := $(sort $(wildcard test/*.src)) ALLTESTS := $(patsubst test/%.src,out/test/%.txt,$(SRCTESTS)) diff --git a/runtest.sh b/test/runtest.sh