[BACK]Return to Makefile CVS log [TXT][DIR] Up to [local] / src

Diff for /src/Makefile between version 1.15 and 1.23

version 1.15, 1997/02/28 23:22:07 version 1.23, 1997/12/09 19:45:29
Line 1 
Line 1 
 #       $OpenBSD$  #       $OpenBSD$
 #       $NetBSD: Makefile,v 1.25 1995/10/09 02:11:28 thorpej Exp $  
   
   #
   # For more information on building in tricky environments, please see
   # the list of possible environment variables described in
   # /usr/share/mk/bsd.README.
   #
   # Building recommendations:
   #
   # 1) If at all possible, put this source tree in /usr/src.  If /usr/src
   # must be a symbolic link, setenv BSDSRCDIR to point to the real location.
   #
   # 2) It is also recommended that you compile with objects outside the
   # source tree. To do this, ensure /usr/obj exists or points to some
   # area of disk of sufficient size.  Then do "cd /usr/src; make obj".
   # This will make a symbolic link called "obj" in each directory, as
   # well as populate the /usr/obj properly with directories for the
   # objects.
   #
   # 3) If you are reasonably sure that things will compile OK, use the
   # "make build" target supplied here. Good luck.
   
 .include <bsd.own.mk>   # for NOMAN, if it's there.  .include <bsd.own.mk>   # for NOMAN, if it's there.
   
 # NOTE THAT etc *DOES NOT* BELONG IN THE LIST BELOW  
   
 SUBDIR+= lib include bin libexec sbin usr.bin usr.sbin share games  SUBDIR+= lib include bin libexec sbin usr.bin usr.sbin share games
 SUBDIR+= gnu  SUBDIR+= gnu
   
 SUBDIR+= sys lkm  SUBDIR+= sys lkm
   
 .if defined(KERBEROS)  .if (${KERBEROS} == "yes")
 SUBDIR+= kerberosIV  SUBDIR+= kerberosIV
 .endif  .endif
   
   .if   make(clean) || make(cleandir) || make(obj)
   SUBDIR+= distrib
   .endif
   
 .if exists(regress)  .if exists(regress)
 .ifmake !(install)  .ifmake !(install)
 SUBDIR+= regress  SUBDIR+= regress
Line 41 
Line 62 
 .endif  .endif
   
 build:  build:
   .ifdef GLOBAL_AUTOCONF_CACHE
           rm -f ${GLOBAL_AUTOCONF_CACHE}
   .endif
         (cd ${.CURDIR}/share/mk && ${MAKE} install)          (cd ${.CURDIR}/share/mk && ${MAKE} install)
         (cd ${.CURDIR}/include; ${MAKE} includes)          (cd ${.CURDIR}/include; ${MAKE} includes)
         ${MAKE} cleandir          ${MAKE} cleandir
Line 49 
Line 73 
 .if (${MACHINE_ARCH} == "mips")  .if (${MACHINE_ARCH} == "mips")
         ldconfig          ldconfig
 .endif  .endif
 .if defined(KERBEROS)  .if (${KERBEROS} == "yes")
         (cd ${.CURDIR}/kerberosIV && ${MAKE} build)          (cd ${.CURDIR}/kerberosIV && ${MAKE} build)
   .endif
   .if (${MACHINE_ARCH} == "mips")
           ldconfig
 .endif  .endif
         ${MAKE} depend && ${MAKE} && ${MAKE} install          ${MAKE} depend && ${MAKE} && ${MAKE} install
   

Legend:
Removed from v.1.15  
changed lines
  Added in v.1.23