mirror of
https://github.com/cc65/cc65.git
synced 2025-03-01 11:29:27 +00:00
15 lines
184 B
Bash
15 lines
184 B
Bash
#!/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
|
|
|