8 lines
246 B
Makefile
Raw Normal View History

2023-02-19 23:40:58 +01:00
LDFLAGS = -lm -lgrapheme -lSDL2 -lGLEW -lGL
2023-02-15 02:15:44 +01:00
CFLAGS = -g -Wall -Wextra -pedantic
2023-02-19 23:40:58 +01:00
SOURCE = main.c font.c cache.c hash.c util.c ren.c
HEADER = font.h hash.h cache.h util.h ren.h
2023-02-15 02:15:44 +01:00
test: ${HEADER} ${SOURCE}
gcc ${CFLAGS} ${LDFLAGS} ${SOURCE} -o test