-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathclean
More file actions
executable file
·41 lines (37 loc) · 733 Bytes
/
clean
File metadata and controls
executable file
·41 lines (37 loc) · 733 Bytes
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/bash
make distclean
echo autoclean: cleaning root
rm -rf aclocal.m4 \
autom4te.cache \
autoscan.log \
config.guess \
compile \
build-aux \
bios.pc \
config.h \
config.h.in~ \
config.h.in \
config.sub \
config.status \
configure \
depcomp \
install-sh \
ltmain.sh \
missing \
Makefile \
stamp-h1 \
libtool \
config.log \
`find . -name Makefile.in`
echo autoclean: cleaning m4
cd m4 && rm -rf \
libtool.m4 \
lt~obsolete.m4 \
ltoptions.m4 \
ltsugar.m4 \
ltversion.m4
cd ..
echo autoclean: cleaning doc
cd doc && rm -rf \
Doxyfile
cd ..