-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.mk
39 lines (30 loc) · 1011 Bytes
/
config.mk
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
# tabbed version
VERSION = 0.6
# Customize below to fit your system
# paths
PREFIX = /usr/local
MANPREFIX = ${PREFIX}/share/man
GCNOPREFIX = ${PREFIX}/share/gcno-tabbed
X11INC = /usr/X11R6/include
X11LIB = /usr/X11R6/lib
# freetype
FREETYPELIBS = -lfontconfig -lXft
FREETYPEINC = /usr/include/freetype2
# OpenBSD (uncomment)
#FREETYPEINC = ${X11INC}/freetype2
# includes and libs
INCS = -I. -I/usr/include -I$(X11INC) -I${FREETYPEINC}
LIBS = -L/usr/lib -lc -L${X11LIB} -lX11 ${FREETYPELIBS} -lbsd -lzmq -lstdc++
# flags
CPPFLAGS = -DVERSION=\"${VERSION}\" -D_DEFAULT_SOURCE
CFLAGS = -std=c99 -pedantic -Wall ${INCS} ${CPPFLAGS} -g
LDFLAGS = ${LIBS}
ifdef BUILD_INSTRUMENTED_COVERAGE
CFLAGS += --coverage -fprofile-dir=%q{SOURCE_DIR} -fprofile-prefix-path=$(CURDIR) -g -DBUILD_INSTRUMENTED_COVERAGE
LDFLAGS += --coverage -fprofile-dir=%q{SOURCE_DIR} -fprofile-prefix-path=$(CURDIR) -g
endif
# Solaris
#CFLAGS = -fast ${INCS} -DVERSION=\"${VERSION}\"
#LDFLAGS = ${LIBS}
# compiler and linker
CC ?= cc