fix toggle floating with Button2 in tileleft layout, and prefix layout functions...
[awesome.git] / config.mk
blobd3d23106d957c3be39af0d6f7cabdec2c1cd0725
1 # awesome version
2 VERSION = devel
4 # Customize below to fit your system
6 # additional layouts beside floating
7 LAYOUTS = layouts/tile.c layouts/floating.c
9 # paths
10 PREFIX = /usr/local
11 MANPREFIX = ${PREFIX}/share/man
13 X11INC = /usr/include/X11
14 X11LIB = /usr/lib/X11
16 # includes and libs
17 INCS = -I. -I/usr/include -I${X11INC} `pkg-config --cflags libconfig`
18 LIBS = -L/usr/lib -lc -L${X11LIB} -lX11 `pkg-config --libs libconfig` -lXext -lXrandr -lXinerama
20 # flags
21 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}\"
22 LDFLAGS = -ggdb3 ${LIBS}
24 # compiler and linker
25 CC = cc