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

Diff for /src/Makefile between version 1.81 and 1.84

version 1.81, 2001/09/25 10:26:39 version 1.84, 2002/05/15 15:55:01
Line 47 
Line 47 
 .endif  .endif
   
 .if   make(clean) || make(cleandir) || make(obj)  .if   make(clean) || make(cleandir) || make(obj)
 SUBDIR+= distrib  SUBDIR+= distrib regress
 .endif  .endif
   
 .if exists(regress)  .if exists(regress)
 .ifmake !(install)  
 SUBDIR+= regress  
 .endif  
   
 regression-tests:  regression-tests:
         @echo Running regression tests...          @echo Running regression tests...
         @cd ${.CURDIR}/regress && exec ${MAKE} regress          @cd ${.CURDIR}/regress && ${MAKE} depend && exec ${MAKE} regress
 .endif  .endif
   
 includes:  includes:
Line 188 
Line 184 
         cross-ranlib cross-nm          cross-ranlib cross-nm
   
 cross-binutils-links: cross-dirs  cross-binutils-links: cross-dirs
         for cmd in ar as ld nm ranlib size strip; do \          for cmd in ar as ld nm ranlib objcopy objdump size strings strip; do \
             if [ ! -e ${CROSSDIR}/usr/bin/$$cmd -a -e ${CROSSDIR}/usr/bin/`cat ${CROSSDIR}/TARGET_CANON`-$$cmd ]; then \              if [ ! -e ${CROSSDIR}/usr/bin/$$cmd -a -e ${CROSSDIR}/usr/bin/`cat ${CROSSDIR}/TARGET_CANON`-$$cmd ]; then \
                 ln -sf ${CROSSDIR}/usr/bin/`cat ${CROSSDIR}/TARGET_CANON`-$$cmd \                  ln -sf ${CROSSDIR}/usr/bin/`cat ${CROSSDIR}/TARGET_CANON`-$$cmd \
                 ${CROSSDIR}/usr/bin/$$cmd ;\                  ${CROSSDIR}/usr/bin/$$cmd ;\

Legend:
Removed from v.1.81  
changed lines
  Added in v.1.84