config.mk
author Anselm R.Garbe <arg@10ksloc.org>
Mon, 14 Aug 2006 08:43:19 +0200
changeset 268 a47b3b0d7bf4
parent 255 340281a6dfdb
child 300 1f52b380769e
permissions -rw-r--r--
applied Sanders LD and resize patches

# dwm version
VERSION = 0.9

# 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/usr/lib -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}