config.mk
author Anselm R. Garbe <arg@10kloc.org>
Mon, 28 Aug 2006 12:27:00 +0200
changeset 376 201acf925788
parent 350 b10852dbbffe
child 393 6786cd59468f
permissions -rw-r--r--
changed config.arg.h - I really need the 4th tag

# dwm version
VERSION = 1.2

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