22 lines
297 B
Bash
Raw Normal View History

#!/bin/bash
2018-11-25 21:16:39 -08:00
# Run this from the desktop.system directory
2018-11-25 21:16:39 -08:00
set -e
source "../res/util.sh"
function stats {
echo "$(printf '%-15s' $1)""$(../res/stats.pl < $1)"
}
#do_make clean
do_make all
SOURCES="desktop.system"
# Compute stats
echo "Stats:"
for t in $SOURCES; do
stats "$t.s"
done;