summaryrefslogtreecommitdiff
path: root/mk.config
diff options
context:
space:
mode:
Diffstat (limited to 'mk.config')
-rw-r--r--mk.config114
1 files changed, 114 insertions, 0 deletions
diff --git a/mk.config b/mk.config
new file mode 100644
index 0000000000000..ebd5e1de3ebf2
--- /dev/null
+++ b/mk.config
@@ -0,0 +1,114 @@
+#
+# A BSD-compatible install command.
+#
+INSTALL=install
+
+#
+# Packaging prefix.
+#
+PREFIX=/usr/local
+
+#
+# Where to place binaries.
+#
+BINDIR=$(PREFIX)/ucb
+
+#
+# Where to place libraries.
+#
+LIBDIR=$(PREFIX)/ucblib
+
+#
+# Where to place ASCII charts and the like.
+#
+PUBDIR=$(PREFIX)/pub
+
+#
+# Where to place manual pages.
+#
+MANDIR=$(PREFIX)/share/heirloom-doctools/man
+
+#
+# Where to place the troff macro packages.
+#
+MACDIR=$(LIBDIR)/doctools/tmac
+
+#
+# Where to place the troff font files.
+#
+FNTDIR=$(LIBDIR)/doctools/font
+
+#
+# Where to place PostScript helper files.
+#
+PSTDIR=$(FNTDIR)/devpost/postscript
+
+#
+# Where to place the nroff terminal description files.
+#
+TABDIR=$(LIBDIR)/doctools/nterm
+
+#
+# Where to place troff hyphenation files.
+#
+HYPDIR=$(LIBDIR)/doctools/hyphen
+
+#
+# Where to place files belonging to the "refer" utility.
+#
+REFDIR=$(LIBDIR)/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=
+
+#
+# The C++ compiler.
+#
+#CXX=
+
+#
+# Compiler flags.
+#
+#CFLAGS=
+
+#
+# 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