1
0
mirror of https://github.com/cc65/cc65.git synced 2024-07-26 23:29:27 +00:00
cc65/samples/tutorial/sym1/clean

15 lines
184 B
Plaintext
Raw Normal View History

#!/usr/bin/env bash
#
# clean.sh
if [ -f $1.c ]; then
echo
echo "--- Cleaning $1 ---"
rm $1.s $1.o $1.map $1.bin $1.hex > /dev/null 2>&1
echo "--- Cleaned $1 ---"
fi