-
Notifications
You must be signed in to change notification settings - Fork 0
/
clean.sh
41 lines (38 loc) · 2.35 KB
/
clean.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
#! /bin/sh
####################################################################
# USB stack and host controller driver for SGI IRIX 6.5 #
# #
# Programmed by BSDero #
# bsdero at gmail dot com #
# 2011/2012 #
# #
# #
# File: clean.sh #
# Description: Clean script #
####################################################################
#############################################################################################
# Fixlist (Latest at top) #
#############################################################################################
# Author MM-DD-YYYY Description #
#############################################################################################
# BSDero 09-12-2012 -Added diaginfo directory removal #
# -Added help.txt file removal #
# #
# BSDero 07-23-2012 -Updated interpreter, now it should run with /bin/sh instead #
# /usr/nekoware/bin/bash #
# #
# BSDero 07-19-2012 -Initial version #
# #
#############################################################################################
##################################################################################
# Clean files
##################################################################################
echo "Cleaning files..."
if [ -e config.h ]; then
rm config.h
fi
make clean
rm -rf *.o *.disam *.s *.build.output
rm -rf diaginfo
rm -rf help.txt
echo "done"