aboutsummaryrefslogtreecommitdiff
path: root/config.mk
blob: 0acf5b58d82f662ff8ee3bfee3773de63ea74fed (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# See LICENSE file for copyright and license details.

PREFIX = /usr/local

CC   = cc
SRC != find src -name "*.c"
OBJ  = ${SRC:.c=.o}

LIBNAME = liblog
LIBVER  = 0.0.0-a1

CFLAGS  = -Wall -ansi --std=c89 -pedantic ${OPT} -DLIBVER=\"${LIBVER}\"