mirror of
https://github.com/forth-ev/VolksForth.git
synced 2024-11-19 17:31:23 +00:00
19 lines
364 B
Makefile
19 lines
364 B
Makefile
|
|
|
|
test: logtest.result
|
|
|
|
clean:
|
|
rm -f *.log *.LOG *.result *.golden
|
|
|
|
|
|
logtest.log: volks4th.com tests/LOG2FILE.FB tests/LOGTEST.FB emulator/run-in-dosbox.sh
|
|
./emulator/run-in-dosbox.sh volks4th.com logtest
|
|
|
|
logtest.golden: tests/golden/logtest.golden
|
|
cp -p $< $@
|
|
|
|
%.result: %.log %.golden tests/evaluate-test.sh
|
|
rm -f $@
|
|
tests/evaluate-test.sh $(basename $@)
|
|
|