VolksForth/6502/Apple1/source/Makefile
2020-07-15 11:24:43 +02:00

12 lines
275 B
Makefile

blk_files = $(wildcard *.fb)
fth_files = $(patsubst %.fb, %.fth, $(blk_files))
# Target to convert all .fb blk sources into .fth files.
fth: $(fth_files)
# Generic rule for converting .fb blk sources into .fth files.
%.fth: %.fb fb2fth.py
../../../tools/fb2fth.py $< $@