config.mk
author arg@mig29
Fri, 08 Dec 2006 10:40:09 +0100
changeset 626 2644c951fc74
parent 613 5f4bb0a58f32
child 636 4c5bf6369e90
permissions -rw-r--r--
removed the hardcoded fixed fallback, it is useless in non-Latin1 environments

# dwm version
VERSION = 2.7

# 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}