blob: a9e97b0f2383a3b0217c18f47ff273f993797b86 (
plain)
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
|
# tabbed version
VERSION = 0.6
# Customize below to fit your system
# paths
PREFIX = /usr/local
MANPREFIX = ${PREFIX}/share/man
# Patched Xft with support for coloured emojis
# https://github.com/uditkarode/libxft-bgra
XftINC = /usr/local/include
XftLIB = /usr/local/lib
X11INC = /usr/include
X11LIB = /usr/lib
# freetype
FREETYPELIBS = -lfontconfig -lXft
FREETYPEINC = /usr/include/freetype2
# OpenBSD (uncomment)
#FREETYPEINC = ${X11INC}/freetype2
# includes and libs
INCS = -I. -I$(XftINC) -I$(X11INC) -I${FREETYPEINC}
LIBS = -lc -L$(XftLIB) -L${X11LIB} -lX11 ${FREETYPELIBS}
# flags
CPPFLAGS = -DVERSION=\"${VERSION}\" -D_DEFAULT_SOURCE
CFLAGS = -std=c99 -pedantic -Wall -Os ${INCS} ${CPPFLAGS}
LDFLAGS = -Wl,-rpath=$(XftLIB) -s ${LIBS}
# Solaris
#CFLAGS = -fast ${INCS} -DVERSION=\"${VERSION}\"
#LDFLAGS = ${LIBS}
# compiler and linker
# CC = tcc
CC = gcc
|