Adapt Makefile to cover core.ft instead of core.fth

This commit is contained in:
Philip Zembrod 2020-06-14 22:46:22 +02:00
parent e8a6f73a86
commit e4452b4847

View File

@ -6,7 +6,7 @@
vf_blk_d64_files = $(wildcard disks/*.d64)
vf_blk_fth_files = $(patsubst %.d64, %.fth, $(vf_blk_d64_files))
test_files = $(wildcard tests/*.fth)
test_files = $(wildcard tests/*.f*)
test_files_petscii = $(patsubst tests/%, cbmfiles/%, $(test_files))
@ -51,6 +51,9 @@ emulator/%.T64: cbmfiles/%
cbmfiles/%.fth: tests/%.fth
ascii2petscii $< $@
cbmfiles/%.fr: tests/%.fr
ascii2petscii $< $@
# Generic rule for converting .d64 blk sources into .fth files.