CGit
Gitweb
projects
/
keystone-rtos
/
ibl.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Bug fix for automatic file format detection
[keystone-rtos/ibl.git]
/
time-make
1
#! /bin/bash
2
clear
3
mkdir -p logs
4
5
. setenv
6
7
if [ -z "$LOG_NAME" ] ; then LOG_NAME=-$1 ; fi
8
if [ "$LOG_NAME" = "-" ] ; then LOG_NAME="" ; fi
9
10
$(which time) -v -o logs/make$LOG_NAME.time make -C src/make "$@" 2>&1 | tee logs/make$LOG_NAME.log
11