Files

13 lines
321 B
Makefile
Raw Permalink Normal View History

2024-09-22 11:44:10 +01:00
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
2024-09-22 11:44:10 +01:00
clean:
rm -f fontconvert