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

# 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 = $(exec_prefix)/hurd
libdir = $(exec_prefix)/lib
bindir = $(exec_prefix)/bin
sbindir = $(exec_prefix)/sbin
includedir = $(exec_prefix)/include
libexecdir = $(exec_prefix)/libexec
bootdir = $(exec_prefix)/boot
infodir = $(prefix)/info
sysconfdir = $(prefix)/etc
localstatedir = $(prefix)/var
sharedstatedir = $(prefix)/com

# 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@

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

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

# If a separate libcrypt is available, use it.
LIBCRYPT = @LIBCRYPT@

# 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@

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