summaryrefslogtreecommitdiffstats
path: root/share/mk/bsd.own.mk
diff options
context:
space:
mode:
authorjb <jb@FreeBSD.org>1998-08-18 00:50:36 +0000
committerjb <jb@FreeBSD.org>1998-08-18 00:50:36 +0000
commitc7a862e7a33844fb67329c15b9e60579f01696f6 (patch)
tree82ac6089c69970af4c96727e528781a684de7d56 /share/mk/bsd.own.mk
parent09bd4b96031eb28e1f510c7fd8cb02e65daee9a0 (diff)
downloadFreeBSD-src-c7a862e7a33844fb67329c15b9e60579f01696f6.zip
FreeBSD-src-c7a862e7a33844fb67329c15b9e60579f01696f6.tar.gz
Add default OBJFORMAT so that the build process can test for this
without having to run objformat to determine it.
Diffstat (limited to 'share/mk/bsd.own.mk')
-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