# awesome version VERSION = 2.0 RELEASE = "Fruit Fly" # Customize below to fit your system # additional layouts LAYOUTS = layouts/tile.c layouts/floating.c layouts/max.c # paths X11INC = ${LOCALBASE}/include X11LIB = ${LOCALBASE}/lib # includes and libs INCS = -I. -I/usr/include -I${X11INC} `pkg-config --cflags libconfuse xft cairo` LIBS = -L/usr/lib -lc -L${X11LIB} -lX11 `pkg-config --libs libconfuse xft cairo` -lXext -lXrandr -lXinerama # flags CFLAGS+= -pipe -Wall -W -Wchar-subscripts -Wshadow -Wcast-align -Wwrite-strings -Wunused -Wuninitialized -Wpointer-arith -Wredundant-decls -Wmissing-prototypes ${INCS} -DVERSION=\"${VERSION}\" -DRELEASE=\"${RELEASE}\" LDFLAGS+= ${LIBS} CLIENTLDFLAGS+= ${LIBS} # compiler and linker CC?= cc