summaryrefslogtreecommitdiff
path: root/config.make.in
blob: cdd812e0eb7763c171822a77d403997162988aea (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
# @configure_input@

package-version := @PACKAGE_VERSION@
# What version of the Hurd is this?  For compatibility (libraries' SONAMEs),
# hard-code this to 0.3 instead of coupling with PACKAGE_VERSION.
hurd-version := 0.3

# Machine architecture.
machine = @host_cpu@
asm_syntax = @asm_syntax@

# Build options.
build-profiled = @enable_profile@
build-static = @enable_static_progs@
boot-store-types = @boot_store_types@

# Prefix prepended to names of machine-independent installed files.
prefix = @prefix@
# Prefix prepended to names of machine-dependent installed files.
exec_prefix = @exec_prefix@

# Directories where things get installed.
hurddir = $(DESTDIR)${exec_prefix}/hurd
libdir = $(DESTDIR)@libdir@
bindir = $(DESTDIR)@bindir@
sbindir = $(DESTDIR)@sbindir@
includedir = $(DESTDIR)@includedir@
libexecdir = $(DESTDIR)@libexecdir@
bootdir = $(DESTDIR)${exec_prefix}/boot
infodir = $(DESTDIR)@infodir@
sysconfdir = $(DESTDIR)@sysconfdir@
localstatedir = $(DESTDIR)@localstatedir@
sharedstatedir = $(DESTDIR)@sharedstatedir@
datadir = $(DESTDIR)@datadir@
datarootdir = $(DESTDIR)@datarootdir@

# All of those directories together:
installationdirlist = $(hurddir) $(libdir) $(bindir) $(sbindir) \
	$(includedir) $(libexecdir) $(bootdir) $(infodir) $(sysconfdir) \
	$(localstatedir) $(sharedstatedir)


# How to run compilation tools.
CC = @CC@
CPP = $(CC) -E -x c # We need this option when input file names are not *.c.
LD = @LD@
OBJCOPY = @OBJCOPY@
AR = @AR@
RANLIB = @RANLIB@
MIG = @MIG@
MIGCOM = $(MIG) -cc cat - /dev/null
AWK = @AWK@
SED = @SED@
LEX = @LEX@
YACC = @YACC@

# Compilation flags.  Append these to the definitions already made by
# the specific Makefile.
CPPFLAGS += @CPPFLAGS@ @DEFS@
CFLAGS += @CFLAGS@
LDFLAGS += @LDFLAGS@

gnu89-inline-CFLAGS = @libc_cv_gnu89_inline@

# `yes' or `no' to indicate if ld --version-script is available.
VERSIONING = @VERSIONING@

# How to link against Parted libraries, if at all.
PARTED_LIBS = @PARTED_LIBS@

# How to compile and link against ncursesw.
LIBNCURSESW = @LIBNCURSESW@
NCURSESW_INCLUDE = @NCURSESW_INCLUDE@

# How to compile and link against X11.
HAVE_X11 = @have_x11@
X11_CFLAGS = @X11_CFLAGS@
X11_LIBS = @X11_LIBS@
XKB_BASE = @XKB_BASE@
X11_KEYSYMDEF_H = @X11_KEYSYMDEF_H@

# How to compile and link against libdaemon.
libdaemon_CFLAGS = @libdaemon_CFLAGS@
libdaemon_LIBS = @libdaemon_LIBS@

# How to compile and link against libbz2.
HAVE_LIBBZ2 = @HAVE_LIBBZ2@

# How to compile and link against libz.
HAVE_LIBZ = @HAVE_LIBZ@

# How to compile and link against libblkid.
libblkid_CFLAGS = @libblkid_CFLAGS@
libblkid_LIBS = @libblkid_LIBS@

# Whether Sun RPC support is available.
HAVE_SUN_RPC = @HAVE_SUN_RPC@

# Whether we found libgcrypt.
HAVE_LIBGCRYPT = @HAVE_LIBGCRYPT@

# Whether we found liblwip.
HAVE_LIBLWIP = @HAVE_LIBLWIP@

# How to compile and link against liblwip.
liblwip_CFLAGS = @liblwip_CFLAGS@
liblwip_LIBS = @liblwip_LIBS@

# Installation tools.
INSTALL = @INSTALL@
INSTALL_PROGRAM = @INSTALL_PROGRAM@
INSTALL_DATA = @INSTALL_DATA@