Changeset 58

Show
Ignore:
Timestamp:
06/13/06 13:12:15 (6 years ago)
Author:
tg
Message:

change 'make v' target, which was the same as 'make verbose',
to additionally append standard output and error (i.e. a full
build log) to a 'make.log' file; svn:ignore the make.log file

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/freewrt

    • Property svn:ignore changed from
      dl
      .config*
      .tmpconfig.h
      root_fs*
      build_*
      toolchain_build_*
      staging_dir_*
      bin
      lbin
      prereq
      to
      dl
      .config*
      .tmpconfig.h
      root_fs*
      build_*
      toolchain_build_*
      staging_dir_*
      bin
      lbin
      prereq
      make.log
  • trunk/freewrt/Makefile

    r56 r58  
    4343 
    4444v: prereq 
    45         ${GMAKE_INV} all V=99 
     45        @echo '${GMAKE_INV} all V=99' >>make.log 
     46        ${GMAKE_INV} all V=99 2>&1 | tee -a make.log 
    4647 
    4748verbose: prereq 
     
    5758        ${GMAKE_INV} cleandir 
    5859        @-rm -rf lbin 
    59         @-rm -f prereq 
     60        @-rm -f make.log prereq 
    6061 
    6162distclean: prereq 
    6263        ${GMAKE_INV} distclean 
    6364        @-rm -rf lbin 
    64         @-rm -f prereq 
     65        @-rm -f make.log prereq 
    6566 
    6667image_clean: prereq