mirror of
https://github.com/forth-ev/VolksForth.git
synced 2025-02-19 09:31:02 +00:00
12 lines
275 B
Makefile
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 $< $@
|