config.mk (311B)
1 # edo 2 VERSION = 0.1 3 4 # paths 5 PREFIX = /usr/local 6 MANPREFIX = ${PREFIX}/share/man 7 8 # flags 9 CPPFLAGS = -D_DEFAULT_SOURCE -DVERSION=\"${VERSION}\" 10 CFLAGS = -std=c99 -g -pedantic -Wall -O0 ${CPPFLAGS} 11 #CFLAGS = -std=c99 -pedantic -Wall -Wno-deprecated-declarations -Os ${CPPFLAGS} 12 13 # compiler and linker 14 CC = cc