esp-who/components/lcd/Adafruit-GFX-Library/fontconvert/Makefile

13 lines
236 B
Makefile
Raw Normal View History

2018-10-18 15:52:33 +08:00
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