1
0
mirror of https://github.com/cc65/cc65.git synced 2024-06-06 01:29:31 +00:00
cc65/targettest/sym1/clean
2021-06-06 23:20:54 +01:00

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