mirror of
https://github.com/adafruit/Adafruit-GFX-Library.git
synced 2024-10-03 18:18:46 -04:00
13 lines
196 B
Makefile
13 lines
196 B
Makefile
|
all: fontconvert
|
||
|
|
||
|
CC = gcc
|
||
|
CFLAGS = -Wall -I/usr/local/include/freetype2
|
||
|
LIBS = -lfreetype
|
||
|
|
||
|
fontconvert: fontconvert.c
|
||
|
$(CC) $(CFLAGS) $< $(LIBS) -o $@
|
||
|
strip $@
|
||
|
|
||
|
clean:
|
||
|
rm -f fontconvert
|