From 8909bb8e8c915d105daaf7d1fd03546af5ab4d94 Mon Sep 17 00:00:00 2001 From: gamerdonkey Date: Sat, 14 Sep 2024 16:00:46 -0500 Subject: Changing to use an Adafruit_GFX library from components repo. --- components/fasani__adafruit_gfx/fontconvert/Makefile | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 components/fasani__adafruit_gfx/fontconvert/Makefile (limited to 'components/fasani__adafruit_gfx/fontconvert/Makefile') diff --git a/components/fasani__adafruit_gfx/fontconvert/Makefile b/components/fasani__adafruit_gfx/fontconvert/Makefile new file mode 100644 index 0000000..47f5a0e --- /dev/null +++ b/components/fasani__adafruit_gfx/fontconvert/Makefile @@ -0,0 +1,12 @@ +all: fontconvert + +CC = gcc +CFLAGS = -Wall -I/usr/local/include/freetype2 -I/usr/include/freetype2 -I/usr/include +LIBS = -lfreetype + +fontconvert: fontconvert.c + $(CC) $(CFLAGS) $< $(LIBS) -o $@ + strip $@ + +clean: + rm -f fontconvert -- cgit v1.2.3