From 5761bf7c9ec58d481ddc45f7e68424570918af67 Mon Sep 17 00:00:00 2001 From: Philip Zembrod Date: Sun, 2 Jul 2023 11:29:47 +0200 Subject: [PATCH] Move inctest.fth from src/ to tests/ --- 8080/CPM/Makefile | 13 +++++++------ 8080/CPM/{src => tests}/inctest.fth | 0 2 files changed, 7 insertions(+), 6 deletions(-) rename 8080/CPM/{src => tests}/inctest.fth (100%) diff --git a/8080/CPM/Makefile b/8080/CPM/Makefile index fef4c46..bcdf131 100644 --- a/8080/CPM/Makefile +++ b/8080/CPM/Makefile @@ -29,9 +29,10 @@ src/%.fth: src/%.fb ../../tools/fb2fth.py tests/%.fth: tests/%.fb ../../tools/fb2fth.py ../../tools/fb2fth.py $< $@ -inctest.log: $(patsubst %, $(cpmfilesdir)/%, volks4th.com) \ - $(patsubst src/%, $(cpmfilesdir)/%, \ - src/include.fb src/inctest.fth) \ +inctest.log: \ + $(patsubst %, $(cpmfilesdir)/%, volks4th.com) \ + $(patsubst src/%, $(cpmfilesdir)/%, src/include.fb) \ + $(patsubst tests/%, $(cpmfilesdir)/%, tests/inctest.fth) \ | emu ./emulator/run-in-runcpm.sh \ "volks4th" \ @@ -41,9 +42,9 @@ inctest.log: $(patsubst %, $(cpmfilesdir)/%, volks4th.com) \ "exit" cp $(runcpmdir)/output.log $@ -logtest.log: $(patsubst %, $(cpmfilesdir)/%, volks4th.com) \ - $(patsubst tests/%, $(cpmfilesdir)/%, \ - tests/log2file.fb) \ +logtest.log: \ + $(patsubst %, $(cpmfilesdir)/%, volks4th.com) \ + $(patsubst tests/%, $(cpmfilesdir)/%, tests/log2file.fb) \ | emu ./emulator/run-in-runcpm.sh \ "volks4th" \ diff --git a/8080/CPM/src/inctest.fth b/8080/CPM/tests/inctest.fth similarity index 100% rename from 8080/CPM/src/inctest.fth rename to 8080/CPM/tests/inctest.fth