forked from Bitc0indad/gnostr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathclean.mk
47 lines (40 loc) · 1.56 KB
/
clean.mk
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
##clean
## remove gnostr *.o *.a gnostr.1
clean-gnostr:## remove gnostr *.o *.a gnostr.1
rm -rf $(shell which gnostr) || echo
rm -rf /usr/local/share/man/man1/gnostr.1 || echo
rm -f gnostr *.o *.a || echo
##clean-hyper-nostr
## remove deps/hyper-nostr
clean-hyper-nostr:## remove deps/hyper-nostr
rm -rf deps/hyper-nostr || echo
##clean-hyper-sdk
## remove deps/hypersdk
clean-hyper-sdk:## remove deps/hyper-sdk
rm -rf deps/hyper-sdk || echo
##clean-secp
## remove deps/secp256k1/.libs/libsecp256k1.*
clean-secp:## remove deps/secp256k1/.libs/libsecp256k1.* libsecp256k1.a
rm -rf libsecp256k1.a || echo
cd ext/secp256k1-0.3.2 && find . -type f -name '*.o' -print0 | rm -f || echo
##clean-gnostr-git
## remove deps/gnostr-git/gnostr-git
## remove gnostr-git
clean-gnostr-git:## remove deps/gnostr-git gnostr-git
rm -rf libgit.a || echo
cd git && find . -type f -name '*.o' -print0 | rm -f || echo
##clean-gnostr-legit
## remove deps/gnostr-git/gnostr-legit
## remove gnostr-legit
clean-gnostr-legit:## remove deps/gnostr-legit gnostr-legit
rm -rf gnostr-legit || echo
cd legit && find . -type f -name '*.o' -print0 | rm -f || echo
##clean-gnostr-cat
## remove deps/gnostr-cat
clean-gnostr-cat:## remove deps/gnostr-cat
cd cat && find . -type f -name '*.o' -print0 | rm -f || echo
clean-all:clean clean-hyper-nostr clean-secp clean-gnostr-git clean-gnostr-legit clean-gnostr-cat## clean clean-*
##clean-all
## clean clean-hyper-nostr clean-secp clean-gnostr-git clean-tcl clean-jq
find . -type f -name '*.o' -print0 | rm -f
find . -type f -name '*.a' -print0 | rm -f