You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
inav-configurator/resources/osd/Makefile

17 lines
279 B
Makefile

.PHONY: all clean
FONTS = default bold large
CHARMAPS = $(addsuffix .mcm, $(FONTS))
PREVIEWS = $(addsuffix .png, $(FONTS))
all: $(CHARMAPS) $(PREVIEWS)
%.mcm: % %/*.png
max7456tool -f build $< $@
%.png: %.mcm
max7456tool -f png $< $@
clean:
$(RM) $(CHARMAPS) $(PREVIEWS)