Deleted Added
full compact
Makefile (17820) Makefile (17962)
1#
1#
2# $Id: Makefile,v 1.96 1996/08/07 19:28:09 nate Exp $
2# $Id: Makefile,v 1.98 1996/08/25 05:17:49 jkh Exp $
3#
4# Make command line options:
5# -DCLOBBER will remove /usr/include
6# -DMAKE_LOCAL to add ./local to the SUBDIR list
7# -DMAKE_PORTS to add ./ports to the SUBDIR list
8# -DMAKE_EBONES to build eBones (KerberosIV)
9#
10# -DNOCLEANDIR run ${MAKE} clean, instead of ${MAKE} cleandir

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

181 cd ${.CURDIR} && ${MAKE} libraries
182 @echo
183 @echo "--------------------------------------------------------------"
184 @echo " Rebuilding C compiler, make, symorder, sgmlfmt and zic(8)"
185 @echo "--------------------------------------------------------------"
186 cd ${.CURDIR} && ${MAKE} build-tools
187 @echo
188 @echo "--------------------------------------------------------------"
3#
4# Make command line options:
5# -DCLOBBER will remove /usr/include
6# -DMAKE_LOCAL to add ./local to the SUBDIR list
7# -DMAKE_PORTS to add ./ports to the SUBDIR list
8# -DMAKE_EBONES to build eBones (KerberosIV)
9#
10# -DNOCLEANDIR run ${MAKE} clean, instead of ${MAKE} cleandir

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

181 cd ${.CURDIR} && ${MAKE} libraries
182 @echo
183 @echo "--------------------------------------------------------------"
184 @echo " Rebuilding C compiler, make, symorder, sgmlfmt and zic(8)"
185 @echo "--------------------------------------------------------------"
186 cd ${.CURDIR} && ${MAKE} build-tools
187 @echo
188 @echo "--------------------------------------------------------------"
189 @echo " Rebuilding.. The whole thing"
189 @echo " Rebuilding dependencies"
190 @echo "--------------------------------------------------------------"
190 @echo "--------------------------------------------------------------"
191 cd ${.CURDIR} && ${MAKE} depend && ${MAKE} all install
191 cd ${.CURDIR} && ${MAKE} depend
192 @echo
193 @echo "--------------------------------------------------------------"
194 @echo " Building everything.."
195 @echo "--------------------------------------------------------------"
196 cd ${.CURDIR} && ${MAKE} all
197 @echo
198 @echo "--------------------------------------------------------------"
199 @echo " Installing everything.."
200 @echo "--------------------------------------------------------------"
201 cd ${.CURDIR} && ${MAKE} install
202 @echo
203 @echo "--------------------------------------------------------------"
204 @echo " Rebuilding man page indexes"
205 @echo "--------------------------------------------------------------"
192 cd ${.CURDIR}/share/man && ${MAKE} makedb
193.if target(post-world)
194 @echo
195 @echo "--------------------------------------------------------------"
196 @echo " Making 'post-world' target"
197 @echo "--------------------------------------------------------------"
198 cd ${.CURDIR} && ${MAKE} post-world
199.endif
200 @echo
201 @echo "--------------------------------------------------------------"
202 @echo "make world completed on `date`"
206 cd ${.CURDIR}/share/man && ${MAKE} makedb
207.if target(post-world)
208 @echo
209 @echo "--------------------------------------------------------------"
210 @echo " Making 'post-world' target"
211 @echo "--------------------------------------------------------------"
212 cd ${.CURDIR} && ${MAKE} post-world
213.endif
214 @echo
215 @echo "--------------------------------------------------------------"
216 @echo "make world completed on `date`"
217 @echo "--------------------------------------------------------------"
203
204#
205# reinstall
206#
207# If you have a build server, you can NFS mount the source and obj directories
208# and do a 'make reinstall' on the *client* to install new binaries from the
209# most recent server build.
210#

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

220 cd ${.CURDIR} && ${MAKE} mk
221 @echo
222 @echo "--------------------------------------------------------------"
223 @echo " Rebuilding /usr/include"
224 @echo "--------------------------------------------------------------"
225 cd ${.CURDIR} && ${MAKE} includes
226 @echo
227 @echo "--------------------------------------------------------------"
218
219#
220# reinstall
221#
222# If you have a build server, you can NFS mount the source and obj directories
223# and do a 'make reinstall' on the *client* to install new binaries from the
224# most recent server build.
225#

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

235 cd ${.CURDIR} && ${MAKE} mk
236 @echo
237 @echo "--------------------------------------------------------------"
238 @echo " Rebuilding /usr/include"
239 @echo "--------------------------------------------------------------"
240 cd ${.CURDIR} && ${MAKE} includes
241 @echo
242 @echo "--------------------------------------------------------------"
228 @echo " Reinstalling.. The whole thing"
243 @echo " Rebuilding dependencies"
229 @echo "--------------------------------------------------------------"
244 @echo "--------------------------------------------------------------"
245 cd ${.CURDIR} && ${MAKE} depend
230 @echo
246 @echo
247 @echo "--------------------------------------------------------------"
248 @echo " Building everything.."
249 @echo "--------------------------------------------------------------"
250 cd ${.CURDIR} && ${MAKE} all
251 @echo
252 @echo "--------------------------------------------------------------"
253 @echo " Installing everything.."
254 @echo "--------------------------------------------------------------"
231 cd ${.CURDIR} && ${MAKE} install
255 cd ${.CURDIR} && ${MAKE} install
256 @echo
257 @echo "--------------------------------------------------------------"
258 @echo " Rebuilding man page indexes"
259 @echo "--------------------------------------------------------------"
232 cd ${.CURDIR}/share/man && ${MAKE} makedb
233
234
235#
236# update
237#
238# Update the source tree, by running sup and/or running cvs to update to the
239# latest copy.

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

358# includes - possibly generate and install the include files.
359#
360includes:
361.if defined(CLOBBER)
362 rm -rf ${DESTDIR}/usr/include/*
363 mtree -deU -f ${.CURDIR}/etc/mtree/BSD.include.dist \
364 -p ${DESTDIR}/usr/include
365.endif
260 cd ${.CURDIR}/share/man && ${MAKE} makedb
261
262
263#
264# update
265#
266# Update the source tree, by running sup and/or running cvs to update to the
267# latest copy.

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

386# includes - possibly generate and install the include files.
387#
388includes:
389.if defined(CLOBBER)
390 rm -rf ${DESTDIR}/usr/include/*
391 mtree -deU -f ${.CURDIR}/etc/mtree/BSD.include.dist \
392 -p ${DESTDIR}/usr/include
393.endif
394 cd ${.CURDIR}/include/rpcsvc && ${MAKE} all
366 cd ${.CURDIR}/include && ${MAKE} install
367 cd ${.CURDIR}/gnu/include && ${MAKE} install
368 cd ${.CURDIR}/gnu/lib/libreadline && ${MAKE} beforeinstall
369 cd ${.CURDIR}/gnu/lib/libregex && ${MAKE} beforeinstall
370 cd ${.CURDIR}/gnu/lib/libg++ && ${MAKE} beforeinstall
371 cd ${.CURDIR}/gnu/lib/libdialog && ${MAKE} beforeinstall
372.if exists(eBones) && !defined(NOCRYPT) && defined(MAKE_EBONES)
373 cd ${.CURDIR}/eBones/include && ${MAKE} beforeinstall

--- 109 unchanged lines hidden ---
395 cd ${.CURDIR}/include && ${MAKE} install
396 cd ${.CURDIR}/gnu/include && ${MAKE} install
397 cd ${.CURDIR}/gnu/lib/libreadline && ${MAKE} beforeinstall
398 cd ${.CURDIR}/gnu/lib/libregex && ${MAKE} beforeinstall
399 cd ${.CURDIR}/gnu/lib/libg++ && ${MAKE} beforeinstall
400 cd ${.CURDIR}/gnu/lib/libdialog && ${MAKE} beforeinstall
401.if exists(eBones) && !defined(NOCRYPT) && defined(MAKE_EBONES)
402 cd ${.CURDIR}/eBones/include && ${MAKE} beforeinstall

--- 109 unchanged lines hidden ---