config.mk
author Anselm R. Garbe <arg@suckless.org>
Wed, 14 Feb 2007 14:01:12 +0100
changeset 760 8ed842c35e8d
parent 738 2ae946319c7b
child 782 92862ab407d5
permissions -rw-r--r--
added ban() which takes care than a banned window is not banned again... (this reduces the overall ConfigureNotify's to clients)

# dwm version
VERSION = 3.6

# Customize below to fit your system

# paths
PREFIX = /usr/local
MANPREFIX = ${PREFIX}/share/man

X11INC = /usr/X11R6/include
X11LIB = /usr/X11R6/lib

# includes and libs
INCS = -I. -I/usr/include -I${X11INC}
LIBS = -L/usr/lib -lc -L${X11LIB} -lX11

# flags
CFLAGS = -Os ${INCS} -DVERSION=\"${VERSION}\"
LDFLAGS = ${LIBS}
#CFLAGS = -g -Wall -O2 ${INCS} -DVERSION=\"${VERSION}\"
#LDFLAGS = -g ${LIBS}

# Solaris
#CFLAGS = -fast ${INCS} -DVERSION=\"${VERSION}\"
#LDFLAGS = ${LIBS}
#CFLAGS += -xtarget=ultra

# compiler and linker
CC = cc