-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathMakefile
57 lines (42 loc) · 1.31 KB
/
Makefile
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
.PHONY: phetch phetch-update phd phd-update clean
default: phetch
deadwiki: deadwiki-update
./scripts/brew.rb deadwiki-clone/Cargo.toml > deadwiki.rb
sed -i '' 's/install "deadwiki"/install "dead"/g' deadwiki.rb
git commit -am "deadwiki $(VERSION)"
rm -f *.tgz *.zip
deadwiki-update: deadwiki-clone
cd deadwiki-clone && git pull
deadwiki-clone:
git clone https://github.com/xvxx/deadwiki deadwiki-clone
phd: phd-update
./scripts/brew.rb phd-clone/Cargo.toml > phd.rb
git commit -am "phd $(VERSION)"
rm -f *.tgz *.zip
phd-update: phd-clone
cd phd-clone && git pull
phd-clone:
git clone https://github.com/xvxx/phd phd-clone
phetch: phetch-update
./scripts/brew.rb phetch-clone/Cargo.toml > phetch.rb
./scripts/aur.rb
git commit -am "phetch $(VERSION)"
rm -f *.tgz *.zip
phetch-update: phetch-clone phetch-aur
cd phetch-clone && git pull
cd phetch-aur && git checkout . && git pull
phetch-aur:
git clone ssh://[email protected]/phetch.git phetch-aur
phetch-clone:
git clone https://github.com/xvxx/phetch phetch-clone
shy: shy-update
./scripts/brew.rb shy-clone/Cargo.toml > shy.rb
git commit -am "shy $(VERSION)"
rm -f *.tgz *.zip
shy-update: shy-clone
cd shy-clone && git pull
shy-clone:
git clone https://github.com/xvxx/shy shy-clone
clean:
rm -f *.tgz *.zip *.tgz.* *.zip.*
rm -rf *-aur *-clone