aboutsummaryrefslogtreecommitdiff
path: root/config.make.in
diff options
context:
space:
mode:
Diffstat (limited to 'config.make.in')
-rw-r--r--config.make.in57
1 files changed, 57 insertions, 0 deletions
diff --git a/config.make.in b/config.make.in
new file mode 100644
index 00000000..c9371150
--- /dev/null
+++ b/config.make.in
@@ -0,0 +1,57 @@
+# @configure_input@
+
+# Machine architecture.
+machine = @host_cpu@
+asm_syntax = @asm_syntax@
+
+# Build options.
+build-profiled = @enable_profile@
+build-static = @enable_static_progs@
+
+# 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
+infodir = $(prefix)/info
+sysconfdir = $(prefix)/etc
+localstatedir = $(prefix)/var
+sharedstatedir = $(prefix)/com
+
+# All of those directories together:
+installationdirlist = $(hurddir) $(libdir) $(bindir) $(sbindir) \
+ $(includedir) $(libexecdir) $(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@
+
+# If a separate libcrypt is available, use it.
+LIBCRYPT = @LIBCRYPT@
+
+# Installation tools.
+INSTALL = @INSTALL@
+INSTALL_PROGRAM = @INSTALL_PROGRAM@
+INSTALL_DATA = @INSTALL_DATA@