aboutsummaryrefslogtreecommitdiffstats
path: root/src/gdisp/mcufont/mcufont.mk
diff options
context:
space:
mode:
Diffstat (limited to 'src/gdisp/mcufont/mcufont.mk')
-rw-r--r--src/gdisp/mcufont/mcufont.mk19
1 files changed, 19 insertions, 0 deletions
diff --git a/src/gdisp/mcufont/mcufont.mk b/src/gdisp/mcufont/mcufont.mk
new file mode 100644
index 00000000..0b402877
--- /dev/null
+++ b/src/gdisp/mcufont/mcufont.mk
@@ -0,0 +1,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