diff options
Diffstat (limited to 'config.mk')
-rw-r--r-- | config.mk | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -1,5 +1,7 @@ # See LICENSE file for copyright and license details. +PREFIX = /usr/local + CC = cc SRC != find src -name "*.c" OBJ = ${SRC:.c=.o} @@ -7,4 +9,5 @@ OBJ = ${SRC:.c=.o} LIBNAME = liblog LIBVER = 0.0.0-a1 -CFLAGS = -Wall -ansi --std=c89 -pedantic ${OPT} -DLIBVER=\"${LIBVER}\"
\ No newline at end of file +CFLAGS = -Wall -ansi --std=c89 -pedantic ${OPT} -DLIBVER=\"${LIBVER}\" + |