X-Git-Url: https://git.subgeniuskitty.com/unix-history/.git/blobdiff_plain/ea9dfc18da25b9e5d3c1fab6cc06cfd343ef286f..7648449fe89758135a2600c5ad3210e487a13363:/usr/src/Makefile diff --git a/usr/src/Makefile b/usr/src/Makefile index f070e836db..6fb37f7816 100644 --- a/usr/src/Makefile +++ b/usr/src/Makefile @@ -3,32 +3,40 @@ # All rights reserved. The Berkeley software License Agreement # specifies the terms and conditions for redistribution. # -# @(#)Makefile 4.13 (Berkeley) %G% +# @(#)Makefile 4.16 (Berkeley) %G% +# +# This makefile is designed to be run in one of three ways: # -# This makefile is designed to be run as: # make build # make installsrc -# The `make build' will compile and install the libraries -# before building the rest of the sources. The `make installsrc' -# will then install the remaining binaries. -# -# It can also be run in the more conventional way: -# make +# The `make build' will compile and install the libraries and the compiler +# twice before building the rest of the sources. The `make installsrc' will +# then install the remaining binaries. Only `make build' will clean out +# the source tree as well as remake the dependencies. +# +# make libthenall +# make installsrc +# The `make libthenall' will compile and install the libraries, compile +# and install the compiler and then compile everything else. Note, +# however, that the libraries will have been built with the old compiler. +# The `make installsrc' will then install the remaining binaries. +# +# make all # make install -# The `make' will compile everything without installing anything. -# The `make install' will then install everything. Note however -# that all the binaries will have been loaded with the old libraries. +# The `make all' (the default) will compile everything, and install +# nothing. The `make install' will then install everything. # # C library options: passed to libc makefile. # See lib/libc/Makefile for explanation. +# # HOSTLOOKUP must be either named or hosttable. # DFLMON must be either mon.o or gmon.o. # DEFS may include -DLIBC_SCCS, -DSYSLIBC_SCCS, both, or neither. # -HOSTLOOKUP=named -DFLMON=mon.o -DEFS= -DLIBC_SCCS -LIBCDEFS= HOSTLOOKUP=${HOSTLOOKUP} DFLMON=${DFLMON} DEFS="${DEFS}" +DEFS= -DLIBC_SCCS +DFLMON= mon.o +HOSTLOOKUP= named +LIBCDEFS= HOSTLOOKUP=${HOSTLOOKUP} DFLMON=${DFLMON} DEFS="${DEFS}" # global flags # SRC_MFLAGS are used on makes in command source directories, @@ -36,26 +44,27 @@ LIBCDEFS= HOSTLOOKUP=${HOSTLOOKUP} DFLMON=${DFLMON} DEFS="${DEFS}" # for use in compiling everything else. # DESTDIR= -CFLAGS= -O -SRC_MFLAGS = -k +CFLAGS= -O +SRC_MFLAGS= -k -# Programs that live in subdirectories, and have makefiles of their own. -# -LIBDIR= lib usr.lib -SRCDIR= bin usr.bin etc ucb new games local old +LIBDIR= lib usr.lib +# order is important, old and man must be #1 and #2 +SRCDIR= old man bin etc games local new ucb usr.bin -all: ${LIBDIR} ${SRCDIR} +all: ${LIBDIR} ${SRCDIR} -lib: FRC +libthenall: buildlib1 buildlib3 ${SRCDIR} + +build: clean depend buildlib1 buildlib2 buildlib3 ${SRCDIR} + +lib: FRC cd lib/libc; make ${MFLAGS} ${LIBCDEFS} cd lib; make ${MFLAGS} pcc cpp c2 usr.lib ${SRCDIR}: FRC cd $@; make ${MFLAGS} ${SRC_MFLAGS} -build: buildlib ${SRCDIR} - -buildlib: FRC +buildlib1: FRC @echo installing /usr/include cd include; make ${MFLAGS} DESTDIR=${DESTDIR} install @echo @@ -70,8 +79,10 @@ buildlib: FRC cd lib/pcc; make ${MFLAGS} DESTDIR=${DESTDIR} install cd lib/cpp; make ${MFLAGS} DESTDIR=${DESTDIR} install cd lib/c2; make ${MFLAGS} DESTDIR=${DESTDIR} install - cd lib; make ${MFLAGS} clean @echo + +buildlib2: FRC + cd lib; make ${MFLAGS} clean @echo re-compiling libc.a cd lib/libc; make ${MFLAGS} ${LIBCDEFS} @echo re-installing /lib/libc.a @@ -84,31 +95,40 @@ buildlib: FRC cd lib/cpp; make ${MFLAGS} DESTDIR=${DESTDIR} install cd lib/c2; make ${MFLAGS} DESTDIR=${DESTDIR} install @echo + +buildlib3: FRC @echo compiling usr.lib cd usr.lib; make ${MFLAGS} ${SRC_MFLAGS} @echo installing /usr/lib cd usr.lib; make ${MFLAGS} ${SRC_MFLAGS} DESTDIR=${DESTDIR} install + @echo -FRC: - -install: +install: FRC -for i in ${LIBDIR} ${SRCDIR}; do \ (cd $$i; \ make ${MFLAGS} ${SRC_MFLAGS} DESTDIR=${DESTDIR} install); \ done -installsrc: +installsrc: FRC -for i in ${SRCDIR}; do \ (cd $$i; \ make ${MFLAGS} ${SRC_MFLAGS} DESTDIR=${DESTDIR} install); \ done -tags: +depend: FRC + for i in ${LIBDIR} ${SRCDIR}; do \ + (cd $$i; make ${MFLAGS} depend); \ + done + +tags: FRC for i in include lib usr.lib; do \ (cd $$i; make ${MFLAGS} TAGSFILE=../tags tags); \ done sort -u +0 -1 -o tags tags -clean: - rm -f a.out core *.s *.o - for i in ${LIBDIR} ${SRCDIR}; do (cd $$i; make -k ${MFLAGS} clean); done +clean: FRC + for i in ${LIBDIR} ${SRCDIR}; do \ + (cd $$i; make -k ${MFLAGS} clean); \ + done + +FRC: