Index: /issm/trunk/cron/nightlyrun.sh
===================================================================
--- /issm/trunk/cron/nightlyrun.sh	(revision 1565)
+++ /issm/trunk/cron/nightlyrun.sh	(revision 1566)
@@ -37,5 +37,5 @@
 	#launch nightly run (get start time)
 	source $1;
-	START=$(timer)
+	START_TIME=$(timer)
 fi
 
@@ -93,4 +93,6 @@
 make -j $NUMCPUS
 make -j $NUMCPUS install
+INSTAL_TIME=$(timer)
+export ELAPSED_INSTAL=$(timer $START)
 
 #Launch matlab and the nightly run script
@@ -105,5 +107,6 @@
 
 #Build html report
-export ELAPSEDTIME=$(timer $START)
+export ELAPSED_RUN=$(timer $INSTAL_TIME)
+export ELAPSED_TOTAL=$(timer $START_TIME)
 ./cron/report.sh
 		
Index: /issm/trunk/cron/report.sh
===================================================================
--- /issm/trunk/cron/report.sh	(revision 1565)
+++ /issm/trunk/cron/report.sh	(revision 1566)
@@ -83,5 +83,7 @@
 platform: $ISSM_ARCH<br>
 release: $ISSM_RELEASE<br>
-elapsed time: $ELAPSEDTIME<br>
+total elapsed time: $ELAPSED_TOTAL<br>
+installation elapsed time: $ELAPSED_INSTAL<br>
+runs elapsed time: $ELAPSED_RUN<br>
 <br>
 status: $(if [ `wc -l check.log | awk '{printf("%s",$1);}'`  = "0" ];
