mirror of
https://github.com/usetrmnl/bb_epaper.git
synced 2026-04-29 13:43:26 -07:00
13 lines
321 B
Makefile
13 lines
321 B
Makefile
all: fontconvert
|
|
|
|
CC = gcc
|
|
CFLAGS = -Wall -I/usr/local/include/freetype2 -I/usr/include/freetype2 -I/usr/include -I/opt/homebrew/include/freetype2
|
|
LIBS = -L/opt/homebrew/lib -lfreetype
|
|
|
|
fontconvert: main.c ../src/Group5.h
|
|
$(CC) $(CFLAGS) main.c $(LIBS) -o fontconvert
|
|
strip fontconvert
|
|
|
|
clean:
|
|
rm -f fontconvert
|