Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. =================================================================== RCS file: /ftp/cvs/cvsroot/src/Makefile,v rcsdiff: /ftp/cvs/cvsroot/src/Makefile,v: warning: Unknown phrases like `commitid ...;' are present. retrieving revision 1.6 retrieving revision 1.21 diff -u -p -r1.6 -r1.21 --- src/Makefile 1993/04/10 15:49:55 1.6 +++ src/Makefile 1995/02/19 12:20:06 1.21 @@ -1,8 +1,44 @@ -# $Header: /ftp/cvs/cvsroot/src/Makefile,v 1.6 1993/04/10 15:49:55 cgd Exp $ +# $Id: Makefile,v 1.21 1995/02/19 12:20:06 cgd Exp $ # NOTE THAT etc *DOES NOT* BELONG IN THE LIST BELOW -SUBDIR= bin include lib libexec sbin usr.bin usr.sbin share games \ - gnulib usr.gnubin +SUBDIR+= lib include bin libexec sbin usr.bin usr.sbin share games +SUBDIR+= gnu + +SUBDIR+= sys + +.if exists(domestic) && !defined(EXPORTABLE_SYSTEM) +SUBDIR+= domestic +.endif + +.if exists(regress) +.ifmake !(install) +SUBDIR+= regress +.endif + +regression-tests: + @echo Running regression tests... + @(cd regress && ${MAKE} regress) +.endif + +.include # for NOMAN, if it's there. + +afterinstall: +.ifndef NOMAN + (cd share/man && ${MAKE} makedb) +.endif + +build: + (cd include && ${MAKE} install) + ${MAKE} cleandir + (cd lib && ${MAKE} depend && ${MAKE} && ${MAKE} install) + (cd gnu/lib && ${MAKE} depend && ${MAKE} && ${MAKE} install) +.if exists(domestic) + (cd domestic/libcrypt && ${MAKE} depend && ${MAKE} && ${MAKE} install) +.endif +.if exists(kerberosIV) + (cd kerberosIV && ${MAKE} depend && ${MAKE} && ${MAKE} install) +.endif + ${MAKE} depend && ${MAKE} && ${MAKE} install .include