-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
53 lines (39 loc) · 1.38 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
PACKER-ARGS=-b -y -a -p ./preamble.txt --preamble-js '/* %s */' --preamble-html '<!-- %s -->' --preamble-less '// %s'
# -l ./license.txt
# By default, Make treats a target as the output filename. We need to mark every subfolder as "phony", because otherwise, it'll just say there is nothing to do and exit.
.PHONY: ./*
default: 3d-album-view \
bomb-rating \
copy-and-swap-fields \
disable-seekbar-click-above-player \
lyrics-font-size \
output-now-playing-to-file \
restore-beta-icons \
split-artists-from-title \
split-multi-value-fields \
sqleditor \
undock-panels
clean:
rm -r bin
3d-album-view:
pack-mmip $@ "3D Album View" $(PACKER-ARGS)
bomb-rating:
pack-mmip $@ "Bomb Rating" $(PACKER-ARGS)
copy-and-swap-fields:
pack-mmip $@ "Copy and Swap Fields" $(PACKER-ARGS)
disable-seekbar-click-above-player:
pack-mmip $@ "Disable Seekbar Click above Player" $(PACKER-ARGS)
lyrics-font-size:
pack-mmip $@ "Lyrics Font Size" $(PACKER-ARGS)
output-now-playing-to-file:
pack-mmip $@ "Output Currently Playing Track To File" $(PACKER-ARGS)
restore-beta-icons:
pack-mmip $@ "Restore Beta Icons" $(PACKER-ARGS)
split-artists-from-title:
pack-mmip $@ "Split Artists from Title" $(PACKER-ARGS)
split-multi-value-fields:
pack-mmip $@ "Split Multi-Value Fields" $(PACKER-ARGS)
sqleditor:
pack-mmip $@ "SQL Editor" $(PACKER-ARGS)
undock-panels:
pack-mmip $@ "Undock Panels" $(PACKER-ARGS)