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.
|
LDFLAGS = -lm -lgrapheme
|
|
CFLAGS = -g -Wall -Wextra -pedantic
|
|
SOURCE = main.c font.c cache.c hash.c util.c
|
|
HEADER = font.h hash.h cache.h util.h
|
|
|
|
test: ${HEADER} ${SOURCE}
|
|
gcc ${CFLAGS} ${LDFLAGS} ${SOURCE} -o test
|
|
|