Deleted Added
full compact
bsd.own.mk (36397) bsd.own.mk (38042)
1# $Id: bsd.own.mk,v 1.13 1998/03/19 13:32:43 bde Exp $
1# $Id: bsd.own.mk,v 1.14 1998/05/26 20:12:54 sos Exp $
2#
3# The include file <bsd.own.mk> set common variables for owner,
4# group, mode, and directories. Defaults are in brackets.
5#
6#
7# +++ variables +++
8#
9# DESTDIR Change the tree where the file gets installed. [not set]

--- 14 unchanged lines hidden (view full) ---

24# COMPRESS_EXT File name extension of ${COMPRESS_CMD} command. [.gz]
25#
26# STRIP The flag passed to the install program to cause the binary
27# to be stripped. This is to be used when building your
28# own install script so that the entire system can be made
29# stripped/not-stripped using a single knob. [-s]
30#
31#
2#
3# The include file <bsd.own.mk> set common variables for owner,
4# group, mode, and directories. Defaults are in brackets.
5#
6#
7# +++ variables +++
8#
9# DESTDIR Change the tree where the file gets installed. [not set]

--- 14 unchanged lines hidden (view full) ---

24# COMPRESS_EXT File name extension of ${COMPRESS_CMD} command. [.gz]
25#
26# STRIP The flag passed to the install program to cause the binary
27# to be stripped. This is to be used when building your
28# own install script so that the entire system can be made
29# stripped/not-stripped using a single knob. [-s]
30#
31#
32# BINFORMAT Default executable format. [elf on alpha, aout otherwise]
32#
33#
34#
33# BINOWN Binary owner. [bin]
34#
35# BINGRP Binary group. [bin]
36#
37# BINMODE Binary mode. [555]
38#
39# NOBINMODE Mode for non-executable files. [444]
40#

--- 70 unchanged lines hidden (view full) ---

111# NLSGRP National Language Support files group. [${SHAREOWN}]
112#
113# NLSOWN National Language Support files owner. [${SHAREGRP}]
114#
115# NLSMODE National Language Support files mode. [${NONBINMODE}]
116#
117# INCLUDEDIR Base path for standard C include files [/usr/include]
118
35# BINOWN Binary owner. [bin]
36#
37# BINGRP Binary group. [bin]
38#
39# BINMODE Binary mode. [555]
40#
41# NOBINMODE Mode for non-executable files. [444]
42#

--- 70 unchanged lines hidden (view full) ---

113# NLSGRP National Language Support files group. [${SHAREOWN}]
114#
115# NLSOWN National Language Support files owner. [${SHAREGRP}]
116#
117# NLSMODE National Language Support files mode. [${NONBINMODE}]
118#
119# INCLUDEDIR Base path for standard C include files [/usr/include]
120
121# This is only here for bootstrapping and is not officially exported
122# from here. It has normally already been defined in sys.mk.
123MACHINE_ARCH?= i386
124
125# Default executable format
126.if ${MACHINE_ARCH} == "alpha"
127BINFORMAT?= elf
128.else
129BINFORMAT?= aout
130.endif
131
119# Binaries
120BINOWN?= bin
121BINGRP?= bin
122BINMODE?= 555
123NOBINMODE?= 444
124
125.if ${BINFORMAT} == aout
126LIBDIR?= /usr/lib/aout

--- 53 unchanged lines hidden ---
132# Binaries
133BINOWN?= bin
134BINGRP?= bin
135BINMODE?= 555
136NOBINMODE?= 444
137
138.if ${BINFORMAT} == aout
139LIBDIR?= /usr/lib/aout

--- 53 unchanged lines hidden ---