forked from sbonerlab/fusionseq
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathclean
More file actions
executable file
·60 lines (55 loc) · 1.05 KB
/
clean
File metadata and controls
executable file
·60 lines (55 loc) · 1.05 KB
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
#!/bin/bash
make distclean
echo autoclean: cleaning root
rm -rf aclocal.m4 \
autom4te.cache \
autoscan.log \
config.guess \
config.h \
config.h.in~ \
config.h.in \
config.log \
config.status \
fusionseq.pc \
config.sub \
configure \
depcomp \
install-sh \
libtool \
ltmain.sh \
missing \
Makefile.in \
Makefile \
stamp-h1
echo autoclean: cleaning m4
cd m4 && rm -rf \
libtool.m4 \
lt~obsolete.m4 \
ltoptions.m4 \
ltsugar.m4 \
ltversion.m4
cd ..
echo autoclean: cleaning src
cd src && rm -rf \
Makefile.in \
Makefile
echo autoclean: cleaning src/optional
cd optional && rm -rf \
Makefile.in \
Makefile
cd ..
echo autoclean: cleaning src/test
cd test && rm -rf \
Makefile.in \
Makefile
cd ..
echo autoclean: cleaning src/cgi
cd cgi && rm -rf \
Makefile.in \
Makefile
cd ..
cd ..
echo autoclean: cleaning doc
cd doc && rm -rf \
Doxyfile
cd ..