This commit was generated by cvs2svn to track changes on a CVS vendor
[unix-history] / Makefile
index 9cefeda..47e1f90 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -1,9 +1,42 @@
 #      @(#)Makefile    5.1.1.2 (Berkeley) 5/9/91
 #
 #      @(#)Makefile    5.1.1.2 (Berkeley) 5/9/91
 #
-#      $Id: Makefile,v 1.6 1993/08/23 20:51:34 rgrimes Exp $
+#      $Id: Makefile,v 1.21 1993/11/09 21:41:30 paul Exp $
 #
 
 #
 
-SUBDIR=        bin contrib games gnu include lib libexec sbin share usr.bin usr.sbin
+SUBDIR=
+.if exists(bin)
+SUBDIR+= bin
+.endif
+.if exists(contrib)
+SUBDIR+= contrib
+.endif
+.if exists(games)
+SUBDIR+= games
+.endif
+.if exists(gnu)
+SUBDIR+= gnu
+.endif
+.if exists(include)
+SUBDIR+= include
+.endif
+.if exists(lib)
+SUBDIR+= lib
+.endif
+.if exists(libexec)
+SUBDIR+= libexec
+.endif
+.if exists(sbin)
+SUBDIR+= sbin
+.endif
+.if exists(share)
+SUBDIR+= share
+.endif
+.if exists(usr.bin)
+SUBDIR+= usr.bin
+.endif
+.if exists(usr.sbin)
+SUBDIR+= usr.sbin
+.endif
 
 # Special cases: etc sys
 # Not ported: kerberosIV
 
 # Special cases: etc sys
 # Not ported: kerberosIV
@@ -17,13 +50,17 @@ CLEANDIR=
 CLEANDIR=      cleandir
 .endif
 
 CLEANDIR=      cleandir
 .endif
 
-world: cleandist mk includes libraries tools mdec
+world: directories cleandist mk includes bootstrapld libraries tools mdec
        @echo "--------------------------------------------------------------"
        @echo " Rebuilding ${DESTDIR} The whole thing"
        @echo "--------------------------------------------------------------"
        @echo
        make depend all install
        @echo "--------------------------------------------------------------"
        @echo " Rebuilding ${DESTDIR} The whole thing"
        @echo "--------------------------------------------------------------"
        @echo
        make depend all install
-       cd usr.sbin/sendmail/src;       make install
+       cd ${.CURDIR}/usr.sbin/sendmail/src;    make install
+       cd ${.CURDIR}/share/man;                make makedb
+
+directories:
+       cd ${.CURDIR}/etc;                      make distrib-dirs
 
 cleandist:
 .if !defined(NOCLEANDIR)
 
 cleandist:
 .if !defined(NOCLEANDIR)
@@ -31,7 +68,8 @@ cleandist:
        @echo " Cleaning up the source tree, and rebuilding the obj tree"
        @echo "--------------------------------------------------------------"
        @echo
        @echo " Cleaning up the source tree, and rebuilding the obj tree"
        @echo "--------------------------------------------------------------"
        @echo
-       cd /usr/obj; rm -rf ${SUBDIR}
+       here=`pwd`; dest=/usr/obj/`echo $$here | sed 's,/usr/src,,'`; \
+       cd $$dest; rm -rf ${SUBDIR}
        find . -name obj | xargs -n30 rm -rf
        make cleandir
        make obj
        find . -name obj | xargs -n30 rm -rf
        make cleandir
        make obj
@@ -45,48 +83,73 @@ mk:
        # DONT DO THIS!! mkdir ${DESTDIR}/usr/share/mk
        chown ${BINOWN}.${BINGRP} ${DESTDIR}/usr/share/mk
        chmod 755 ${DESTDIR}/usr/share/mk
        # DONT DO THIS!! mkdir ${DESTDIR}/usr/share/mk
        chown ${BINOWN}.${BINGRP} ${DESTDIR}/usr/share/mk
        chmod 755 ${DESTDIR}/usr/share/mk
-       cd share/mk;                    make install;
+       cd ${.CURDIR}/share/mk;                 make install;
 
 includes:
        @echo "--------------------------------------------------------------"
        @echo " Rebuilding ${DESTDIR}/usr/include"
        @echo "--------------------------------------------------------------"
        @echo
 
 includes:
        @echo "--------------------------------------------------------------"
        @echo " Rebuilding ${DESTDIR}/usr/include"
        @echo "--------------------------------------------------------------"
        @echo
-       #
-       # setenv SHARED=copies if you wish the include files to be copies
-       #
+.if defined(CLOBBER)
        rm -rf ${DESTDIR}/usr/include
        mkdir ${DESTDIR}/usr/include
        chown ${BINOWN}.${BINGRP} ${DESTDIR}/usr/include
        chmod 755 ${DESTDIR}/usr/include
        rm -rf ${DESTDIR}/usr/include
        mkdir ${DESTDIR}/usr/include
        chown ${BINOWN}.${BINGRP} ${DESTDIR}/usr/include
        chmod 755 ${DESTDIR}/usr/include
-       cd include;                     make install
-       cd gnu/libg++;                  make beforeinstall
-       cd gnu/libregex;                make beforeinstall
-       cd lib/libcurses;               make beforeinstall
-       cd lib/librpc/rpc;              make beforeinstall
+.endif
+       cd ${.CURDIR}/include;                  make install
+       cd ${.CURDIR}/gnu/libg++;               make beforeinstall
+       cd ${.CURDIR}/gnu/libregex;             make beforeinstall
+       cd ${.CURDIR}/lib/libcurses;            make beforeinstall
+       cd ${.CURDIR}/lib/libc;                 make beforeinstall
+
+# XXX -- This will go away later -- hack to get up to speed with shlibs
+# setenv NOBOOTSTRAPLD to prevent building new shlib tools.
+# This is to save build time if you've already done it before,
+# you MUST run it the first time you get the new sources.
+
+bootstrapld:
+.if !defined(NOBOOTSTRAPLD)
+       @echo "--------------------------------------------------------------"
+       @echo " Building new shlib compiler tools"
+       @echo "--------------------------------------------------------------"
+       cd ${.CURDIR}/usr.bin/strip; make depend all install ${CLEANDIR} obj
+       cd ${.CURDIR}/gnu/gas; make depend all install ${CLEANDIR} obj
+       NOPIC=nopic
+       cd ${.CURDIR}/gnu/gcc2; make depend all install
+       cd ${.CURDIR}/gnu/ld; make depend all install ${CLEANDIR} obj
+       NOPIC=
+       cd ${.CURDIR}/gnu/gcc2/libgcc; make all install ${CLEANDIR} obj;
+       cd ${.CURDIR}/lib/libc; make depend all install ${CLEANDIR} obj
+       cd ${.CURDIR}/lib/csu.i386; make depend all install ${CLEANDIR} obj
+       cd ${.CURDIR}/gnu/ld/rtld; make depend all install ${CLEANDIR} obj
+.endif
 
 libraries:
 
 libraries:
-       # setenv NOPROFILED if you do not want profiled libraries
+       # setenv NOPROFILE if you do not want profiled libraries
        @echo "--------------------------------------------------------------"
        @echo " Rebuilding ${DESTDIR}/usr/lib"
        @echo "--------------------------------------------------------------"
        @echo
        @echo "--------------------------------------------------------------"
        @echo " Rebuilding ${DESTDIR}/usr/lib"
        @echo "--------------------------------------------------------------"
        @echo
+.if defined(CLOBBER)
        rm -rf ${DESTDIR}/usr/lib
        mkdir ${DESTDIR}/usr/lib
        chown -R bin.bin ${DESTDIR}/usr/lib
        chmod 755 ${DESTDIR}/usr/lib
        rm -rf ${DESTDIR}/usr/lib
        mkdir ${DESTDIR}/usr/lib
        chown -R bin.bin ${DESTDIR}/usr/lib
        chmod 755 ${DESTDIR}/usr/lib
-       cd lib;                         make depend all install ${CLEANDIR} obj
-       cd gnu/gcc2/libgcc;             make depend all install ${CLEANDIR} obj
-       cd usr.bin/lex;                 make depend all install ${CLEANDIR} obj
-       cd gnu/libregex;                make depend all install ${CLEANDIR} obj
+.endif
+       cd ${.CURDIR}/lib;              make depend all install ${CLEANDIR} obj
+       cd ${.CURDIR}/gnu/gcc2/libgcc;  make depend all install ${CLEANDIR} obj
+       cd ${.CURDIR}/gnu/libg++;       make depend all install ${CLEANDIR} obj
+       cd ${.CURDIR}/gnu/libregex;     make depend all install ${CLEANDIR} obj
+       cd ${.CURDIR}/gnu/libmalloc;    make depend all install ${CLEANDIR} obj
+       cd ${.CURDIR}/usr.bin/lex;      make depend all install ${CLEANDIR} obj
 
 tools:
        @echo "--------------------------------------------------------------"
        @echo " Rebuilding ${DESTDIR} Compiler and Make"
        @echo "--------------------------------------------------------------"
        @echo
 
 tools:
        @echo "--------------------------------------------------------------"
        @echo " Rebuilding ${DESTDIR} Compiler and Make"
        @echo "--------------------------------------------------------------"
        @echo
-       cd gnu/gcc2;                    make depend all install ${CLEANDIR} obj
-       cd usr.bin/make;                make depend all install ${CLEANDIR} obj
+       cd ${.CURDIR}/gnu/gcc2;                 make depend all install ${CLEANDIR} obj
+       cd ${.CURDIR}/usr.bin/make;             make depend all install ${CLEANDIR} obj
 
 mdec:
        @echo "--------------------------------------------------------------"
 
 mdec:
        @echo "--------------------------------------------------------------"
@@ -94,7 +157,7 @@ mdec:
        @echo "--------------------------------------------------------------"
        @echo
 .if ${MACHINE} == "i386"
        @echo "--------------------------------------------------------------"
        @echo
 .if ${MACHINE} == "i386"
-       cd sys/i386/boot;       make depend all install ${CLEANDIR}
+       cd ${.CURDIR}/sys/i386/boot;    make depend all install ${CLEANDIR}
 .if defined (DESTDIR)
        cd /usr/mdec; find . | cpio -pdamuv ${DESTDIR}/usr/mdec
 .endif
 .if defined (DESTDIR)
        cd /usr/mdec; find . | cpio -pdamuv ${DESTDIR}/usr/mdec
 .endif