compiler

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

commit 69246fdae79355794ec191b16165fd404852a2a4
parent e3cc2767a144c69b9c41cc3ccf1511554022e910
Author: Brian Swetland <swetland@frotz.net>
Date:   Thu,  2 Dec 2021 14:53:53 -0800

tests: fix deps for runtests

Diffstat:
MMakefile | 8++++----
1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/Makefile b/Makefile @@ -64,22 +64,22 @@ out/risc5ins.h: src/risc5ins.txt bin/mkinstab # fail to be compiled by the rule that depends on src+log *or* # we fail to depend on the .log for tests with both... -out/test/%.txt: test/%.src test/%.log bin/compiler bin/r5d test/runtest.sh +out/test/%.txt: test/%.src test/%.log bin/compiler bin/r5e test/runtest.sh @mkdir -p out/test @rm -f $@ @test/runtest.sh $< $@ -out/test/%.txt: test/%.src bin/compiler bin/r5d test/runtest.sh +out/test/%.txt: test/%.src bin/compiler bin/r5e test/runtest.sh @mkdir -p out/test @rm -f $@ @test/runtest.sh $< $@ -out/test2/%.txt: test/%.src test/%.log bin/compiler2 bin/r5d test/runtest.sh +out/test2/%.txt: test/%.src test/%.log bin/compiler2 bin/r5e test/runtest2.sh @mkdir -p out/test2 @rm -f $@ @test/runtest2.sh $< $@ -out/test2/%.txt: test/%.src bin/compiler2 bin/r5d test/runtest.sh +out/test2/%.txt: test/%.src bin/compiler2 bin/r5e test/runtest2.sh @mkdir -p out/test2 @rm -f $@ @test/runtest2.sh $< $@