rename uicb_settrans to uicb_client_settrans
[awesome.git] / config.mk
blob912559b4c3c4a54dcb62a542da01218a420c665b
1 # awesome version
2 VERSION = $$(git describe 2>/dev/null || echo devel)
3 RELEASE = "Productivity Breaker"
5 # Customize below to fit your system
7 # additional layouts
8 LAYOUTS = layouts/tile.c layouts/floating.c layouts/max.c
10 # paths
11 PREFIX = /usr/local
12 MANPREFIX = ${PREFIX}/share/man
14 X11INC = /usr/include/X11
15 X11LIB = /usr/lib/X11
17 # includes and libs
18 INCS = -I. -I/usr/include -I${X11INC} `pkg-config --cflags libconfuse xft cairo`
19 LIBS = -L/usr/lib -lc -L${X11LIB} -lX11 `pkg-config --libs libconfuse xft cairo` -lXext -lXrandr -lXinerama
21 # flags
22 CFLAGS = -fgnu89-inline -std=gnu99 -ggdb3 -pipe -Wall -Wextra -W -Wchar-subscripts -Wundef -Wshadow -Wcast-align -Wwrite-strings -Wsign-compare -Wunused -Wuninitialized -Winit-self -Wpointer-arith -Wredundant-decls -Wno-format-zero-length -Wmissing-prototypes -Wmissing-format-attribute -Wmissing-noreturn -O3 ${INCS} -DVERSION=\"${VERSION}\" -DRELEASE=\"${RELEASE}\"
23 LDFLAGS = -ggdb3 ${LIBS}
25 # compiler and linker
26 CC = cc