forked from rscada/libmbus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
clean.sh
executable file
·72 lines (68 loc) · 1.97 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
#!/bin/sh
set -x
true \
&& rm -f Makefile \
&& rm -f Makefile.in \
&& rm -f aclocal.m4 \
&& rm -f config.guess \
&& rm -f config.h \
&& rm -f config.h.in \
&& rm -f config.log \
&& rm -f config.status \
&& rm -f config.sub \
&& rm -f configure \
&& rm -f depcomp \
&& rm -f install-sh \
&& rm -f libmbus.pc \
&& rm -f libtool \
&& rm -f ltmain.sh \
&& rm -f missing \
&& rm -f stamp-h1 \
&& rm -f *~ \
&& rm -f -r autom4te.cache \
&& rm -f -r libltdl \
&& rm -f -r m4 \
&& rm -f -r bin/.deps \
&& rm -f -r bin/.libs \
&& rm -f bin/Makefile \
&& rm -f bin/Makefile.in \
&& rm -f bin/*.o \
&& rm -f bin/*~ \
&& rm -f bin/libmbus.1 \
&& rm -f bin/mbus-serial-request-data \
&& rm -f bin/mbus-serial-request-data-multi-reply \
&& rm -f bin/mbus-serial-scan \
&& rm -f bin/mbus-serial-scan-secondary \
&& rm -f bin/mbus-serial-select-secondary \
&& rm -f bin/mbus-serial-switch-baudrate \
&& rm -f bin/mbus-tcp-raw-send \
&& rm -f bin/mbus-tcp-request-data \
&& rm -f bin/mbus-tcp-request-data-multi-reply \
&& rm -f bin/mbus-tcp-scan \
&& rm -f bin/mbus-tcp-scan-secondary \
&& rm -f bin/mbus-tcp-select-secondary \
&& rm -f -r mbus/.deps \
&& rm -f -r mbus/.libs \
&& rm -f mbus/Makefile \
&& rm -f mbus/Makefile.in \
&& rm -f mbus/*.o \
&& rm -f mbus/*.lo \
&& rm -f mbus/*.la \
&& rm -f mbus/*~ \
&& rm -f -r test/.deps \
&& rm -f -r test/.libs \
&& rm -f test/Makefile \
&& rm -f test/Makefile.in \
&& rm -f test/*.o \
&& rm -f test/*.lo \
&& rm -f test/*.la \
&& rm -f test/*~ \
&& rm -f test/mbus_parse \
&& rm -f test/mbus_parse_hex \
&& rm -f test/mbus_unit_test1 \
&& rm -f -r debian/libmbus-dev \
&& rm -f -r debian/libmbus1 \
&& rm -f -r debian/tmp \
&& rm -f -r debian/*.log \
&& rm -f -r debian/*.substvars \
&& rm -f -r debian/*.debhelper