dwm-meillo

view 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
line source
1 # dwm version
2 VERSION = 1.2
4 # Customize below to fit your system
6 # paths
7 PREFIX = /usr/local
8 MANPREFIX = ${PREFIX}/share/man
10 X11INC = /usr/X11R6/include
11 X11LIB = /usr/X11R6/lib
13 # includes and libs
14 INCS = -I. -I/usr/include -I${X11INC}
15 LIBS = -L/usr/lib -lc -L${X11LIB} -lX11
17 # flags
18 CFLAGS = -Os ${INCS} -DVERSION=\"${VERSION}\"
19 LDFLAGS = ${LIBS}
20 #CFLAGS = -g -Wall -O2 ${INCS} -DVERSION=\"${VERSION}\"
21 #LDFLAGS = -g ${LIBS}
23 # compiler and linker
24 CC = cc
25 LD = ${CC}