Add default OBJFORMAT so that the build process can test for this

without having to run objformat to determine it.
This commit is contained in:
jb 1998-08-18 00:50:36 +00:00
parent 228c4dc2c1
commit c8766f4eda

View File

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