-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathconfig.make
65 lines (45 loc) · 1.15 KB
/
config.make
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
# build configuration
# More options to configure are in src/config.h
# This is a makefile, included by src/Makefile
# Set to 0
SHOWCONFIGINFO := 1
# Dump debugging info
# Values: 0 (off), 1 (on)
ENABLEDEBUG := 0
# Dump all available debug
FULLDEBUG := 0
# version
VERSION := 0.99.6.0
# Set to 1 enable Xresource configuration
# (in addition, slterm has to be started with the option "-x on")
XRESOURCES := 0
# embed terminfo and manual page (+12k)
EMBEDRESOURCES := 1
# Embed fonts into the binary
EMBEDFONT := 0
# utf8-support (currently abandoned. Will not work )
#UTF8 := 0
# Length of history, in bits, -> log(size in lines) ~ bits */
# 8 equals 1<<8 = 256 lines, 9 = 512, 10 = 1024, ..
HISTSIZEBITS := 16
#HISTSIZEBITS = 7
# opt Flag. -O2 might be save, -O3 sometimes gives troubles
OPT_FLAG := -Os
#OPT_FLAG = -g
# Linker Flags
#LINKER_FLAG = -g
LINKER_FLAG := -Os -s
# paths
PREFIX := /usr/local
MANPREFIX := $(PREFIX)/share/man
X11INC := /usr/X11R6/include
X11LIB := /usr/X11R6/lib
# Executables
# pkg-config
PKG_CONFIG := pkg-config
# compiler and linker
CC := gcc
# gcc options
OPTIONS := -Wall
# enable bzip2 fonts
#OPTIONS += -DWITHBZIP2 -lbz2