aewl
annotate config.mk @ 558:e249e2952a32
applied Gottox patch to simplify the resizing of col, instead of resizing the current area, it only resizes the master area in the future (seems more predictable)
author | arg@mig29 |
---|---|
date | Tue, 31 Oct 2006 12:06:38 +0100 |
parents | 1e0a3b974036 |
children | def7247888d4 |
rev | line source |
---|---|
arg@160 | 1 # dwm version |
arg@558 | 2 VERSION = 2.1 |
arg@160 | 3 |
arg@160 | 4 # Customize below to fit your system |
arg@160 | 5 |
garbeam@0 | 6 # paths |
garbeam@0 | 7 PREFIX = /usr/local |
garbeam@0 | 8 MANPREFIX = ${PREFIX}/share/man |
garbeam@0 | 9 |
garbeam@0 | 10 X11INC = /usr/X11R6/include |
garbeam@0 | 11 X11LIB = /usr/X11R6/lib |
garbeam@0 | 12 |
arg@143 | 13 # includes and libs |
arg@303 | 14 INCS = -I. -I/usr/include -I${X11INC} |
arg@143 | 15 LIBS = -L/usr/lib -lc -L${X11LIB} -lX11 |
garbeam@0 | 16 |
arg@148 | 17 # flags |
arg@199 | 18 CFLAGS = -Os ${INCS} -DVERSION=\"${VERSION}\" |
arg@193 | 19 LDFLAGS = ${LIBS} |
arg@193 | 20 #CFLAGS = -g -Wall -O2 ${INCS} -DVERSION=\"${VERSION}\" |
arg@193 | 21 #LDFLAGS = -g ${LIBS} |
arg@148 | 22 |
arg@268 | 23 # compiler and linker |
arg@148 | 24 CC = cc |
arg@268 | 25 LD = ${CC} |