Newer
Older
Import / research / embedded / src / fonts / Makefile
@John Ryland John Ryland on 22 Dec 2020 482 bytes import NUC files

FONTS = \
	target/fonts/luximr-12.map \
	target/fonts/Vera-12.map \
	target/fonts/Vera-14.map \
	target/fonts/Arialn-12.map

DIRS += target/fonts

target/fonts/%-12.map: ./src/fonts/%.ttf host/bin/convertFont .obj/dirs
	./host/bin/convertFont $< $@ 12
	chmod a+rw $@

target/fonts/%-14.map: ./src/fonts/%.ttf host/bin/convertFont .obj/dirs
	./host/bin/convertFont $< $@ 14
	chmod a+rw $@

build-fonts: $(FONTS)
	@echo Finished building fonts

clean-fonts:
	$(CLEAN_FILE) $(FONTS)