aboutsummaryrefslogtreecommitdiffstats
path: root/config.mk
blob: a326a7c03b88e6b50237e55529ea9c98e5270262 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
# dzen version
VERSION = 0.3.5

# Customize below to fit your system

# paths
PREFIX = /usr/local
MANPREFIX = ${PREFIX}/share/man

X11INC = /usr/X11R6/include
X11LIB = /usr/X11R6/lib
INCS = -I. -I/usr/include -I${X11INC}

# Uncomment this line to use Xinerama.
# USE_XINERAMA=y

# (ifdef/else/endif might not be portable; if it doesn't work for you,
# contact the author and we'll work on a better solution.)
ifdef USE_XINERAMA
LIBS = -L/usr/lib -lc -L${X11LIB} -lX11 -lXinerama
CFLAGS = -Os ${INCS} -DVERSION=\"${VERSION}\" -DDZEN_XINERAMA
else
LIBS = -L/usr/lib -lc -L${X11LIB} -lX11
CFLAGS = -Os ${INCS} -DVERSION=\"${VERSION}\"
endif

LDFLAGS = ${LIBS}

# Debugging
#CFLAGS = -g -Wall -O0 ${INCS} -DVERSION=\"${VERSION}\" -DPOSIX_SOURCE
#LDFLAGS = -g ${LIBS}

# Solaris
#CFLAGS = -fast ${INCS} -DVERSION=\"${VERSION}\"
#LDFLAGS = ${LIBS}
#CFLAGS += -xtarget=ultra

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