dwm-meillo

annotate config.mk @ 541:08d3d329270a

using MASTER 600 again, it is definately better, and using urxvtc for the moment (it doesn't flickers on refreshes, but this is not because of Marc Lehmann, it is because of the original rxvt code)
author arg@mig29
date Thu, 26 Oct 2006 12:13:41 +0200
parents c0fffe6c207e
children e249e2952a32
rev   line source
arg@160 1 # dwm version
arg@537 2 VERSION = 2.0
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}