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

LIBNAME = libcherry

CC   = cc
LIB  = x11 utils log
STD  = c11
OPT  = -O2 -pipe
#WRN  = -Wall -Werror

CFLAGS != pkg-config --cflags ${LIB}
LFLAGS != pkg-config --libs ${LIB}

CFLAGS += -std=${STD} ${WRN} ${OPT}