Skip to content

Latest commit

 

History

History
33 lines (23 loc) · 648 Bytes

README.md

File metadata and controls

33 lines (23 loc) · 648 Bytes

make_logger

Tiny logger for recursive make for 'make' command

Build and Install

$ make make_logger
$ cp make_logger ~/bin
  or
$ sudo install make_logger /usr/local/bin

Usage

simple example

$ export MAKE_LOGGER_LOG=`pwd`/logfile.txt
$ make_logger <make command arguments>...
$ cat logfile.txt

realtime watching example

$ export MAKE_LOGGER_LOG=`pwd`/logfile.txt
$ touch $MAKE_LOGGER_LOG
$ xterm -e tail -f $MAKE_LOGGER_LOG &
$ make_logger <make command arguments>...

Copyright

Copyright (c) 2012 ISHII Takeshi. See license.txt for details.