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

Diff for /src/Makefile between version 1.8 and 1.13

version 1.8, 1996/05/06 21:44:03 version 1.13, 1996/12/13 15:45:58
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 39 
Line 43 
 build:  build:
         (cd ${.CURDIR}/share/mk && ${MAKE} install)          (cd ${.CURDIR}/share/mk && ${MAKE} install)
         (cd ${.CURDIR}/include; ${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                # Fuck.
   .endif
 .if defined(KERBEROS)  .if defined(KERBEROS)
         (cd ${.CURDIR}/kerberosIV && ${MAKE} build)          (cd ${.CURDIR}/kerberosIV && ${MAKE} build)
 .endif  .endif

Legend:
Removed from v.1.8  
changed lines
  Added in v.1.13