-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
29 lines (21 loc) · 787 Bytes
/
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
all: Emoji.alfredworkflow
Emoji.alfredworkflow: alfred-emoji.json icons/
zip Emoji.alfredworkflow -r \
icons/ \
info.plist \
icon.png \
alfred-emoji.json \
README.md
alfred-emoji.json: raw-emojis.json emojilib.json unicode-emoji.json codes.json
rm -rf icons/
python3 make_workflow.py
emojilib.json:
curl https://raw.githubusercontent.com/muan/emojilib/v3.0.8/dist/emoji-en-US.json > $@
unicode-emoji.json:
curl https://raw.githubusercontent.com/muan/unicode-emoji-json/v0.5.0/data-by-emoji.json > $@
raw-emojis.json: full-emoji-list.html
python3 parse_html.py
full-emoji-list.html:
curl https://unicode.org/emoji/charts/full-emoji-list.html > $@
clean: Emoji.alfredworkflow emojilib.json unicode-emoji.json raw-emojis.json full-emoji-list.html
.PHONY: all clean