summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--share/mk/bsd.own.mk9
1 files changed, 7 insertions, 2 deletions
diff --git a/share/mk/bsd.own.mk b/share/mk/bsd.own.mk
index 9e28b3e..7838fa1 100644
--- a/share/mk/bsd.own.mk
+++ b/share/mk/bsd.own.mk
@@ -1,4 +1,4 @@
-# $Id: bsd.own.mk,v 1.14 1998/05/26 20:12:54 sos Exp $
+# $Id: bsd.own.mk,v 1.15 1998/08/03 08:28:14 bde Exp $
#
# The include file <bsd.own.mk> set common variables for owner,
# group, mode, and directories. Defaults are in brackets.
@@ -29,8 +29,11 @@
# stripped/not-stripped using a single knob. [-s]
#
#
-# BINFORMAT Default executable format. [elf on alpha, aout otherwise]
+# BINFORMAT Default executable format generated by tools.
+# [elf on alpha, aout otherwise]
#
+# OBJFORMAT Default object format that selects which set of tools to run.
+# [elf on alpha, aout otherwise]
#
# BINOWN Binary owner. [bin]
#
@@ -125,8 +128,10 @@ MACHINE_ARCH?= i386
# Default executable format
.if ${MACHINE_ARCH} == "alpha"
BINFORMAT?= elf
+OBJFORMAT?= elf
.else
BINFORMAT?= aout
+OBJFORMAT?= aout
.endif
# Binaries
OpenPOWER on IntegriCloud