config.mk
author Stiletto <blasux@blasux.ru>
Sat, 16 Mar 2013 00:03:51 +0400
changeset 0 a22a319f5129
child 1 3e9290bf7249
permissions -rw-r--r--
Initial commit

# 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