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

Diff for /src/Makefile between version 1.7 and 1.14

version 1.7, 1996/05/06 20:31:44 version 1.14, 1997/02/27 20:57:52
Line 24 
Line 24 
         @(cd ${.CURDIR}/regress && ${MAKE} regress)          @(cd ${.CURDIR}/regress && ${MAKE} regress)
 .endif  .endif
   
   includes:
           (cd ${.CURDIR}/include; ${MAKE} includes)
   
 beforeinstall:  beforeinstall:
 .ifndef DESTDIR  .ifndef DESTDIR
         (cd ${.CURDIR}/etc && ${MAKE} DESTDIR=/ distrib-dirs)          (cd ${.CURDIR}/etc && ${MAKE} DESTDIR=/ distrib-dirs)
 .else  .else
         (cd ${.CURDIR}/etc && ${MAKE} distrib-dirs)          (cd ${.CURDIR}/etc && ${MAKE} distrib-dirs)
 .endif  .endif
           (cd ${.CURDIR}/include; ${MAKE} includes)
   
 afterinstall:  afterinstall:
 .ifndef NOMAN  .ifndef NOMAN
Line 38 
Line 42 
   
 build:  build:
         (cd ${.CURDIR}/share/mk && ${MAKE} install)          (cd ${.CURDIR}/share/mk && ${MAKE} install)
         ${MAKE} includes          (cd ${.CURDIR}/include; ${MAKE} includes)
 .if defined(KERBEROS)  
         (cd ${.CURDIR}/kerberosIV/include && ${MAKE} install)  
 .endif  
         ${MAKE} cleandir          ${MAKE} cleandir
         (cd ${.CURDIR}/lib && ${MAKE} depend && ${MAKE} && ${MAKE} install)          (cd ${.CURDIR}/lib && ${MAKE} depend && ${MAKE} && ${MAKE} install)
         (cd ${.CURDIR}/gnu/lib && ${MAKE} depend && ${MAKE} && ${MAKE} install)          (cd ${.CURDIR}/gnu/lib && ${MAKE} depend && ${MAKE} && ${MAKE} install)
   .if (${MACHINE_ARCH} == "mips")
           ldconfig
   .endif
 .if defined(KERBEROS)  .if defined(KERBEROS)
         (cd ${.CURDIR}/kerberosIV && ${MAKE} build)          (cd ${.CURDIR}/kerberosIV && ${MAKE} build)
 .endif  .endif

Legend:
Removed from v.1.7  
changed lines
  Added in v.1.14