uaveiro-leci/2ano/2semestre/ac2/pfull

20 lines
334 B
Plaintext
Raw Normal View History

#!/bin/bash
if [ "$#" -ne 1 ]; then
echo "Usage: $0 <source_file>"
exit
fi
file=${1##*/}
dir=${1%/*}
filename="${file%.*}"
cd "$dir" || exit
pcompile "$file" || exit
for f in *; do
if [[ "$f" =~ ^.+\.(o|elf|map|sym)$ ]]; then
rm "$f"
fi
done
ldpic32 "$filename.hex" || exit
pterm || exit
cd "$OLDPWD" || exit