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

Diff for /src/Makefile between version 1.116 and 1.126

version 1.116, 2011/04/24 22:04:43 version 1.126, 2016/10/04 16:54:31
Line 25 
Line 25 
 # 4) If you are reasonably sure that things will compile OK, use the  # 4) If you are reasonably sure that things will compile OK, use the
 # "make build" target supplied here. Good luck.  # "make build" target supplied here. Good luck.
 #  #
 # 5) If you want to setup a cross-build environment, there is a "cross-tools"  # 5) If you want to setup a cross-build environment, there is a "cross-gcc"
 # target available which upon completion of "make TARGET=<target> cross-tools"  # target available which upon completion of:
   #       "make -f Makefile.cross TARGET=<target> cross-gcc"
 # (where <target> is one of the names in the /sys/arch directory) will produce  # (where <target> is one of the names in the /sys/arch directory) will produce
 # a set of compilation tools along with the includes in the /usr/cross/<target>  # a set of compilation tools along with the includes in the /usr/cross/<target>
 # directory. The "cross-distrib" target will build cross-tools as well as  # directory. The "cross-distrib" target will build cross-tools as well as
Line 40 
Line 41 
   
 SUBDIR+= sys  SUBDIR+= sys
   
 .if (${KERBEROS5:L} == "yes")  
 SUBDIR+= kerberosV  
 .endif  
   
 .if   make(clean) || make(cleandir) || make(obj)  .if   make(clean) || make(cleandir) || make(obj)
 SUBDIR+= distrib regress  SUBDIR+= etc distrib regress
 .endif  .endif
   
 .if exists(regress)  
 regression-tests:  regression-tests:
         @echo Running regression tests...          @echo Running regression tests...
         @cd ${.CURDIR}/regress && ${MAKE} depend && exec ${MAKE} regress          @cd ${.CURDIR}/regress && ${MAKE} depend && exec ${MAKE} regress
 .endif  
   
 includes:  includes:
         cd ${.CURDIR}/include && ${MAKE} prereq && exec ${SUDO} ${MAKE} includes          cd ${.CURDIR}/include && ${MAKE} prereq && exec ${MAKE} includes
   
 beforeinstall:  beforeinstall:
         cd ${.CURDIR}/etc && exec ${MAKE} DESTDIR=${DESTDIR} distrib-dirs          cd ${.CURDIR}/etc && exec ${MAKE} DESTDIR=${DESTDIR} distrib-dirs
Line 65 
Line 60 
 afterinstall:  afterinstall:
 .ifndef NOMAN  .ifndef NOMAN
         cd ${.CURDIR}/share/man && exec ${MAKE} makedb          cd ${.CURDIR}/share/man && exec ${MAKE} makedb
           cd ${.CURDIR}/distrib/sets && exec ${MAKE} makedb
 .endif  .endif
   
 .ifdef DESTDIR  .ifdef DESTDIR
Line 76 
Line 72 
 .ifdef GLOBAL_AUTOCONF_CACHE  .ifdef GLOBAL_AUTOCONF_CACHE
         cp /dev/null ${GLOBAL_AUTOCONF_CACHE}          cp /dev/null ${GLOBAL_AUTOCONF_CACHE}
 .endif  .endif
         cd ${.CURDIR}/share/mk && exec ${SUDO} ${MAKE} install          cd ${.CURDIR}/share/mk && exec ${MAKE} install
         cd ${.CURDIR}/include && ${MAKE} prereq && exec ${SUDO} ${MAKE} includes          cd ${.CURDIR}/include && ${MAKE} prereq && exec ${MAKE} includes
         ${SUDO} ${MAKE} cleandir          ${MAKE} cleandir
         cd ${.CURDIR}/lib && ${MAKE} depend && ${MAKE} && \          cd ${.CURDIR}/lib && ${MAKE} depend && ${MAKE} && \
             NOMAN=1 exec ${SUDO} ${MAKE} install              NOMAN=1 exec ${MAKE} install
         cd ${.CURDIR}/gnu/lib && ${MAKE} depend && ${MAKE} && \          cd ${.CURDIR}/gnu/lib && ${MAKE} depend && ${MAKE} && \
             NOMAN=1 exec ${SUDO} ${MAKE} install              NOMAN=1 exec ${MAKE} install
         ${MAKE} depend && ${MAKE} && exec ${SUDO} ${MAKE} install          ${MAKE} depend && ${MAKE} && exec ${MAKE} install
           /bin/sh ${.CURDIR}/distrib/sets/makeetcset ${.CURDIR} ${MAKE}
 .endif  .endif
   
 CROSS_TARGETS=cross-env cross-dirs cross-obj cross-includes cross-binutils \  CROSS_TARGETS=cross-env cross-dirs cross-obj cross-includes cross-binutils \

Legend:
Removed from v.1.116  
changed lines
  Added in v.1.126