aboutsummaryrefslogtreecommitdiffstats
path: root/testing/heirloom-doctools/mk.config
blob: 9a826aec375b0e6487638db471cd1dea6823294e (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
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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
#
# A BSD-compatible install command.
#
INSTALL=/usr/bin/install

#
# Packaging prefix.
#
PREFIX=/usr

#
# Where to place binaries.
#
BINDIR=$(PREFIX)/bin/

#
# Where to place libraries.
#
LIBDIR=$(PREFIX)/lib

#
# Where to place ASCII charts and the like.
#
PUBDIR=$(PREFIX)/share/doctools

#
# Where to place manual pages.
#
MANDIR=$(PREFIX)/share/man

#
# Where to place the troff macro packages.
#
MACDIR=$(PUBDIR)/tmac

#
# Where to place the troff font files.
#
FNTDIR=$(PUBDIR)/font

#
# Where to place PostScript helper files.
#
PSTDIR=$(PUBDIR)/postscript

#
# Where to place the nroff terminal description files.
#
TABDIR=$(PUBDIR)/nterm

#
# Where to place troff hyphenation files.
#
HYPDIR=$(PUBDIR)/hyphen

#
# Where to place files belonging to the "refer" utility.
#
REFDIR=$(PUBDIR)/reftools

#
# Define this if you want troff and nroff to be able to process
# locale-specific (8-bit) characters. It requires appropriate support
# from the C library, so it does not work e.g. with diet libc.
#
EUC=-DEUC

#
# Binaries are stripped with this command after installation.
#
STRIP=strip

#
# The C compiler.
#
CC?=cc

#
# The C++ compiler.
#
CCC?=c++

#
# Compiler flags.
#
#CFLAGS=-O

#
# C preprocessor flags.
#
# Use -D_GNU_SOURCE for Linux with GNU libc.
# Use -D_INCLUDE__STDC_A1_SOURCE for HP-UX.
#
CPPFLAGS+=-D_GNU_SOURCE

#
# Warning flags for the compiler.
#
#WARN=

#
# Linker flags.
#
#LDFLAGS=

#
# Additional libraries to link with.
#
LIBS=

#
# A Bourne-compatible shell.
#
SHELL=/bin/sh

#
# Run ranlib if it is in the current path. This should take care
# of most situations. On Mac OS X, you need to uncomment "ranlib -c".
#
RANLIB=(hash ranlib) >/dev/null 2>&1 || exit 0; ranlib
#RANLIB=ranlib -c