aboutsummaryrefslogtreecommitdiffstats
path: root/src/gdisp/mcufont/mcufont.mk
blob: 0b4028773ccff1c2dc2c4aeb15f1a0578b4ef8b8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# Makefile fragment listing the source files for the mcufont decoder.

# Directory where the decoder source code recides
# Usually you'll want to set this in your own Makefile.
MFDIR ?= mcufont/decoder

# Name of the include directory
MFINC = $(MFDIR)

# Source code files to include
MFSRC = \
    $(MFDIR)/mf_encoding.c \
    $(MFDIR)/mf_font.c \
    $(MFDIR)/mf_justify.c \
    $(MFDIR)/mf_kerning.c \
    $(MFDIR)/mf_rlefont.c \
    $(MFDIR)/mf_bwfont.c \
    $(MFDIR)/mf_scaledfont.c \
    $(MFDIR)/mf_wordwrap.c