config.mk
author Anselm R. Garbe <arg@10kloc.org>
Tue, 12 Sep 2006 09:50:06 +0200
changeset 460 ab4b08d49d24
parent 453 f30f937f9e52
child 469 a2cc7adf9d4d
permissions -rw-r--r--
some more simplifications of intro comment in dwm.h, this should suffice for comments in dwm

# dwm version
VERSION = 1.6

# 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 = ${LIBS}
#CFLAGS = -g -Wall -O2 ${INCS} -DVERSION=\"${VERSION}\"
#LDFLAGS = -g ${LIBS}

# compiler and linker
CC = cc
LD = ${CC}