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

Diff for /src/Makefile between version 1.16 and 1.18

version 1.16, 1997/04/18 06:47:08 version 1.18, 1997/07/29 03:18:39
Line 28 
Line 28 
   
 SUBDIR+= sys lkm  SUBDIR+= sys lkm
   
 .if defined(KERBEROS)  .if (${KERBEROS} == "yes")
 SUBDIR+= kerberosIV  SUBDIR+= kerberosIV
 .endif  .endif
   
Line 59 
Line 59 
 .endif  .endif
   
 build:  build:
   .ifdef GLOBAL_CACHE
           rm -f $HOME/.Makefile.bsd-wrapper.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 67 
Line 70 
 .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  .endif
         ${MAKE} depend && ${MAKE} && ${MAKE} install          ${MAKE} depend && ${MAKE} && ${MAKE} install

Legend:
Removed from v.1.16  
changed lines
  Added in v.1.18