Deleted Added
full compact
bsd.own.mk (38713) bsd.own.mk (39161)
1# $Id: bsd.own.mk,v 1.17 1998/08/30 20:35:24 jb Exp $
1# $Id: bsd.own.mk,v 1.18 1998/08/31 23:34:37 jb 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]

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

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# OBJFORMAT Default object format that selects which set of tools to run.
32# [elf on alpha, aout otherwise]
33#
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]

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

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# OBJFORMAT Default object format that selects which set of tools to run.
32# [elf on alpha, aout otherwise]
33#
34# BINOWN Binary owner. [bin]
34# BINOWN Binary owner. [root]
35#
35#
36# BINGRP Binary group. [bin]
36# BINGRP Binary group. [wheel]
37#
38# BINMODE Binary mode. [555]
39#
40# NOBINMODE Mode for non-executable files. [444]
41#
42#
43# LIBDIR Base path for libraries. [/usr/lib]
44#

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

65# KMODGRP LKM group. [${BINGRP}]
66#
67# KMODMODE LKM mode. [${BINMODE}]
68#
69#
70# SHAREDIR Base path for architecture-independent ascii
71# text files. [/usr/share]
72#
37#
38# BINMODE Binary mode. [555]
39#
40# NOBINMODE Mode for non-executable files. [444]
41#
42#
43# LIBDIR Base path for libraries. [/usr/lib]
44#

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

65# KMODGRP LKM group. [${BINGRP}]
66#
67# KMODMODE LKM mode. [${BINMODE}]
68#
69#
70# SHAREDIR Base path for architecture-independent ascii
71# text files. [/usr/share]
72#
73# SHAREOWN ASCII text file owner. [bin]
73# SHAREOWN ASCII text file owner. [root]
74#
74#
75# SHAREGRP ASCII text file group. [bin]
75# SHAREGRP ASCII text file group. [wheel]
76#
77# SHAREMODE ASCII text file mode. [${NOBINMODE}]
78#
79#
80# DOCDIR Base path for system documentation (e.g. PSD, USD,
81# handbook, FAQ etc.). [${SHAREDIR}/doc]
82#
83# DOCOWN Documentation owner. [${SHAREOWN}]

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

133# Default executable format
134.if ${MACHINE_ARCH} == "alpha"
135OBJFORMAT?= elf
136.else
137OBJFORMAT?= aout
138.endif
139
140# Binaries
76#
77# SHAREMODE ASCII text file mode. [${NOBINMODE}]
78#
79#
80# DOCDIR Base path for system documentation (e.g. PSD, USD,
81# handbook, FAQ etc.). [${SHAREDIR}/doc]
82#
83# DOCOWN Documentation owner. [${SHAREOWN}]

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

133# Default executable format
134.if ${MACHINE_ARCH} == "alpha"
135OBJFORMAT?= elf
136.else
137OBJFORMAT?= aout
138.endif
139
140# Binaries
141BINOWN?= bin
142BINGRP?= bin
141BINOWN?= root
142BINGRP?= wheel
143BINMODE?= 555
144NOBINMODE?= 444
145
146.if ${OBJFORMAT} == aout
147LIBDIR?= /usr/lib/aout
148.else
149LIBDIR?= /usr/lib
150.endif

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

159KMODDIR?= /lkm
160KMODOWN?= ${BINOWN}
161KMODGRP?= ${BINGRP}
162KMODMODE?= ${BINMODE}
163
164
165# Share files
166SHAREDIR?= /usr/share
143BINMODE?= 555
144NOBINMODE?= 444
145
146.if ${OBJFORMAT} == aout
147LIBDIR?= /usr/lib/aout
148.else
149LIBDIR?= /usr/lib
150.endif

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

159KMODDIR?= /lkm
160KMODOWN?= ${BINOWN}
161KMODGRP?= ${BINGRP}
162KMODMODE?= ${BINMODE}
163
164
165# Share files
166SHAREDIR?= /usr/share
167SHAREOWN?= bin
168SHAREGRP?= bin
167SHAREOWN?= root
168SHAREGRP?= wheel
169SHAREMODE?= ${NOBINMODE}
170
171MANDIR?= ${SHAREDIR}/man/man
172MANOWN?= ${SHAREOWN}
173MANGRP?= ${SHAREGRP}
174MANMODE?= ${NOBINMODE}
175
176DOCDIR?= ${SHAREDIR}/doc

--- 24 unchanged lines hidden ---
169SHAREMODE?= ${NOBINMODE}
170
171MANDIR?= ${SHAREDIR}/man/man
172MANOWN?= ${SHAREOWN}
173MANGRP?= ${SHAREGRP}
174MANMODE?= ${NOBINMODE}
175
176DOCDIR?= ${SHAREDIR}/doc

--- 24 unchanged lines hidden ---