config.mk
author Anselm R. Garbe <garbeam@gmail.com>
Sat, 28 Jul 2007 17:18:45 +0200
changeset 927 60d5a92ce85c
parent 912 f7b26d6efc9f
child 941 8c93b982f22e
permissions -rw-r--r--
changed ban/unban implementation to not move the windows anymore, but map/unmap them instead - PLEASE TEST THIS

# dwm version
VERSION = 4.4

# 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 = -s ${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