VolksForth/6502/py65/Makefile
Carsten Strotmann 281bf402a5 New Py65 target
2020-07-15 11:23:08 +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 $< $@