File: clean.sh

package info (click to toggle)
vmg 3.8.1-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 2,528 kB
  • sloc: pascal: 5,160; cpp: 605; sh: 278; lex: 105; ansic: 68; makefile: 37
file content (26 lines) | stat: -rwxr-xr-x 221 bytes parent folder | download | duplicates (7)
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

# Cleans the base directory

rm -f *.o
rm -f *.ppu

rm -f *.pas~
rm -f *.sh~
rm -f *.bak

rm -f *~

rm -f ppas.sh
rm -f log.txt

rm -f *.compiled

rm -f magnifier

# Cleans the build directory

cd build

rm -f *~

cd ..