aboutsummaryrefslogtreecommitdiff
path: root/components/fasani__adafruit_gfx/fontconvert/Makefile
diff options
context:
space:
mode:
authorgamerdonkey2024-09-14 16:00:46 -0500
committergamerdonkey2024-09-14 16:00:46 -0500
commit8909bb8e8c915d105daaf7d1fd03546af5ab4d94 (patch)
tree41c989043795df4a21f1c6ecbf674a46b77a7b94 /components/fasani__adafruit_gfx/fontconvert/Makefile
parent35ff74c9be46e16030d1184a506451e1d3805c25 (diff)
downloadesp32-inova-led-controller-8909bb8e8c915d105daaf7d1fd03546af5ab4d94.tar.gz
esp32-inova-led-controller-8909bb8e8c915d105daaf7d1fd03546af5ab4d94.tar.bz2
esp32-inova-led-controller-8909bb8e8c915d105daaf7d1fd03546af5ab4d94.zip
Changing to use an Adafruit_GFX library from components repo.
Diffstat (limited to 'components/fasani__adafruit_gfx/fontconvert/Makefile')
-rw-r--r--components/fasani__adafruit_gfx/fontconvert/Makefile12
1 files changed, 12 insertions, 0 deletions
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