You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ugui/text_rendering/Makefile

8 lines
246 B

2 years ago
LDFLAGS = -lm -lgrapheme -lSDL2 -lGLEW -lGL
2 years ago
CFLAGS = -g -Wall -Wextra -pedantic
2 years ago
SOURCE = main.c font.c cache.c hash.c util.c ren.c
HEADER = font.h hash.h cache.h util.h ren.h
2 years ago
test: ${HEADER} ${SOURCE}
gcc ${CFLAGS} ${LDFLAGS} ${SOURCE} -o test