Deleted Added
full compact
Makefile (28728) Makefile (28803)
1#
1#
2# $Id: Makefile,v 1.139 1997/08/21 15:43:54 bde Exp $
2# $Id: Makefile,v 1.140 1997/08/25 19:40:53 bde Exp $
3#
4# Make command line options:
5# -DCLOBBER will remove /usr/include
6# -DMAKE_EBONES to build eBones (KerberosIV)
7# -DALLLANG to build documentation for all languages
8# (where available -- see share/doc/Makefile)
9#
10# -DNOCLEANDIR run ${MAKE} clean, instead of ${MAKE} cleandir

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

146 @echo "--------------------------------------------------------------"
147 @echo "make world started on `LC_TIME=C date`"
148 @echo "--------------------------------------------------------------"
149.if target(pre-world)
150 @echo
151 @echo "--------------------------------------------------------------"
152 @echo " Making 'pre-world' target"
153 @echo "--------------------------------------------------------------"
3#
4# Make command line options:
5# -DCLOBBER will remove /usr/include
6# -DMAKE_EBONES to build eBones (KerberosIV)
7# -DALLLANG to build documentation for all languages
8# (where available -- see share/doc/Makefile)
9#
10# -DNOCLEANDIR run ${MAKE} clean, instead of ${MAKE} cleandir

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

146 @echo "--------------------------------------------------------------"
147 @echo "make world started on `LC_TIME=C date`"
148 @echo "--------------------------------------------------------------"
149.if target(pre-world)
150 @echo
151 @echo "--------------------------------------------------------------"
152 @echo " Making 'pre-world' target"
153 @echo "--------------------------------------------------------------"
154 cd ${.CURDIR} && ${MAKE} ${.MAKEFLAGS} pre-world
154 cd ${.CURDIR} && ${MAKE} pre-world
155.endif
155.endif
156 cd ${.CURDIR} && ${MAKE} ${.MAKEFLAGS} buildworld
157 cd ${.CURDIR} && ${MAKE} ${.MAKEFLAGS} installworld
156 cd ${.CURDIR} && ${MAKE} buildworld
157 cd ${.CURDIR} && ${MAKE} installworld
158.if target(post-world)
159 @echo
160 @echo "--------------------------------------------------------------"
161 @echo " Making 'post-world' target"
162 @echo "--------------------------------------------------------------"
158.if target(post-world)
159 @echo
160 @echo "--------------------------------------------------------------"
161 @echo " Making 'post-world' target"
162 @echo "--------------------------------------------------------------"
163 cd ${.CURDIR} && ${MAKE} ${.MAKEFLAGS} post-world
163 cd ${.CURDIR} && ${MAKE} post-world
164.endif
165 @echo
166 @echo "--------------------------------------------------------------"
167 @echo "make world completed on `LC_TIME=C date`"
168 @echo "--------------------------------------------------------------"
169
170.if defined(MAKEOBJDIRPREFIX)
171WORLDTMP= ${MAKEOBJDIRPREFIX}${.CURDIR}/tmp

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

348# most
349#
350# Build most of the user binaries on the existing system libs and includes.
351#
352most:
353 @echo "--------------------------------------------------------------"
354 @echo " Building programs only"
355 @echo "--------------------------------------------------------------"
164.endif
165 @echo
166 @echo "--------------------------------------------------------------"
167 @echo "make world completed on `LC_TIME=C date`"
168 @echo "--------------------------------------------------------------"
169
170.if defined(MAKEOBJDIRPREFIX)
171WORLDTMP= ${MAKEOBJDIRPREFIX}${.CURDIR}/tmp

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

348# most
349#
350# Build most of the user binaries on the existing system libs and includes.
351#
352most:
353 @echo "--------------------------------------------------------------"
354 @echo " Building programs only"
355 @echo "--------------------------------------------------------------"
356 cd ${.CURDIR}/bin && ${MAKE} ${.MAKEFLAGS} all
357 cd ${.CURDIR}/sbin && ${MAKE} ${.MAKEFLAGS} all
358 cd ${.CURDIR}/libexec && ${MAKE} ${.MAKEFLAGS} all
359 cd ${.CURDIR}/usr.bin && ${MAKE} ${.MAKEFLAGS} all
360 cd ${.CURDIR}/usr.sbin && ${MAKE} ${.MAKEFLAGS} all
361 cd ${.CURDIR}/gnu/libexec && ${MAKE} ${.MAKEFLAGS} all
362 cd ${.CURDIR}/gnu/usr.bin && ${MAKE} ${.MAKEFLAGS} all
363 cd ${.CURDIR}/gnu/usr.sbin && ${MAKE} ${.MAKEFLAGS} all
356 cd ${.CURDIR}/bin && ${MAKE} all
357 cd ${.CURDIR}/sbin && ${MAKE} all
358 cd ${.CURDIR}/libexec && ${MAKE} all
359 cd ${.CURDIR}/usr.bin && ${MAKE} all
360 cd ${.CURDIR}/usr.sbin && ${MAKE} all
361 cd ${.CURDIR}/gnu/libexec && ${MAKE} all
362 cd ${.CURDIR}/gnu/usr.bin && ${MAKE} all
363 cd ${.CURDIR}/gnu/usr.sbin && ${MAKE} all
364#.if defined(MAKE_EBONES) && !defined(NOCRYPT)
364#.if defined(MAKE_EBONES) && !defined(NOCRYPT)
365# cd ${.CURDIR}/eBones && ${MAKE} ${.MAKEFLAGS} most
365# cd ${.CURDIR}/eBones && ${MAKE} most
366#.endif
367#.if !defined(NOSECURE) && !defined(NOCRYPT)
366#.endif
367#.if !defined(NOSECURE) && !defined(NOCRYPT)
368# cd ${.CURDIR}/secure && ${MAKE} ${.MAKEFLAGS} most
368# cd ${.CURDIR}/secure && ${MAKE} most
369#.endif
370
371#
372# installmost
373#
374# Install the binaries built by the 'most' target. This does not include
375# libraries or include files.
376#
377installmost:
378 @echo "--------------------------------------------------------------"
379 @echo " Installing programs only"
380 @echo "--------------------------------------------------------------"
369#.endif
370
371#
372# installmost
373#
374# Install the binaries built by the 'most' target. This does not include
375# libraries or include files.
376#
377installmost:
378 @echo "--------------------------------------------------------------"
379 @echo " Installing programs only"
380 @echo "--------------------------------------------------------------"
381 cd ${.CURDIR}/bin && ${MAKE} ${.MAKEFLAGS} install
382 cd ${.CURDIR}/sbin && ${MAKE} ${.MAKEFLAGS} install
383 cd ${.CURDIR}/libexec && ${MAKE} ${.MAKEFLAGS} install
384 cd ${.CURDIR}/usr.bin && ${MAKE} ${.MAKEFLAGS} install
385 cd ${.CURDIR}/usr.sbin && ${MAKE} ${.MAKEFLAGS} install
386 cd ${.CURDIR}/gnu/libexec && ${MAKE} ${.MAKEFLAGS} install
387 cd ${.CURDIR}/gnu/usr.bin && ${MAKE} ${.MAKEFLAGS} install
388 cd ${.CURDIR}/gnu/usr.sbin && ${MAKE} ${.MAKEFLAGS} install
381 cd ${.CURDIR}/bin && ${MAKE} install
382 cd ${.CURDIR}/sbin && ${MAKE} install
383 cd ${.CURDIR}/libexec && ${MAKE} install
384 cd ${.CURDIR}/usr.bin && ${MAKE} install
385 cd ${.CURDIR}/usr.sbin && ${MAKE} install
386 cd ${.CURDIR}/gnu/libexec && ${MAKE} install
387 cd ${.CURDIR}/gnu/usr.bin && ${MAKE} install
388 cd ${.CURDIR}/gnu/usr.sbin && ${MAKE} install
389#.if defined(MAKE_EBONES) && !defined(NOCRYPT)
389#.if defined(MAKE_EBONES) && !defined(NOCRYPT)
390# cd ${.CURDIR}/eBones && ${MAKE} ${.MAKEFLAGS} installmost
390# cd ${.CURDIR}/eBones && ${MAKE} installmost
391#.endif
392#.if !defined(NOSECURE) && !defined(NOCRYPT)
391#.endif
392#.if !defined(NOSECURE) && !defined(NOCRYPT)
393# cd ${.CURDIR}/secure && ${MAKE} ${.MAKEFLAGS} installmost
393# cd ${.CURDIR}/secure && ${MAKE} installmost
394#.endif
395
396#
397# ------------------------------------------------------------------------
398#
399# From here onwards are utility targets used by the 'make world' and
400# related targets. If your 'world' breaks, you may like to try to fix
401# the problem and manually run the following targets to attempt to

--- 238 unchanged lines hidden ---
394#.endif
395
396#
397# ------------------------------------------------------------------------
398#
399# From here onwards are utility targets used by the 'make world' and
400# related targets. If your 'world' breaks, you may like to try to fix
401# the problem and manually run the following targets to attempt to

--- 238 unchanged lines hidden ---