# dwm version
VERSION = 0.01
# Customize below to fit your system
# includes and libs
#INCS = -I. -I/usr/include -I${X11INC} `pkg-config --cflags xft pango pangoxft`
#LIBS = -L/usr/lib -lc -L${X11LIB} -lX11 ${XINERAMALIBS} `pkg-config --libs xft pango pangoxft`
LIBS = -L/usr/lib -lc -lrt -lm
# flags
CPPFLAGS = -DVERSION=\"${VERSION}\"
CFLAGS = -g -std=c99 -pedantic -Wall -O0 ${INCS} ${CPPFLAGS}
#CFLAGS = -std=c99 -pedantic -Wall -Os ${INCS} ${CPPFLAGS}
LDFLAGS = -g ${LIBS}
#LDFLAGS = -s ${LIBS}
# compiler and linker
CC = cc