dwm-meillo

annotate config.mk @ 384:126e78129f1d

configurenotify remembers max geom now, and restores this if necessary, however it accepts to touch the max size on configurerequest, this shouldn't break fillscreen apps (tested with mplayer)
author Anselm R. Garbe <arg@10kloc.org>
date Tue, 29 Aug 2006 17:31:55 +0200
parents b10852dbbffe
children 6786cd59468f
rev   line source
arg@160 1 # dwm version
arg@376 2 VERSION = 1.2
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}