[doc] update clone urls to afify.dev/sfm
[sfm.git] / config.mk
blobf7d9a3ad501d7f30a5606a003727d8b7c6a46fc6
1 # sfm version
2 VERSION = 0.2
4 # paths
5 PREFIX = /usr/local
6 MANPREFIX = ${PREFIX}/share/man
8 # flags
9 CPPFLAGS = -D_DEFAULT_SOURCE -D_BSD_SOURCE -D_POSIX_C_SOURCE=200809L -D_XOPEN_SOURCE=700 -DVERSION=\"${VERSION}\"
10 CFLAGS = -std=c99 -pedantic -Wextra -Wall -Wno-unused-parameter -Os ${CPPFLAGS}
11 LDFLAGS = -pthread -s
13 # compiler and linker
14 CC = cc