Merge pull request #21 from dougfelt/master
Add tool and data to generate format 14 cmap.pull/28/head
commit
9419c23480
8
Makefile
8
Makefile
|
@ -83,6 +83,7 @@ EMOJI_PNG128 = ./png/128/emoji_u
|
||||||
EMOJI_BUILDER = third_party/color_emoji/emoji_builder.py
|
EMOJI_BUILDER = third_party/color_emoji/emoji_builder.py
|
||||||
ADD_GLYPHS = third_party/color_emoji/add_glyphs.py
|
ADD_GLYPHS = third_party/color_emoji/add_glyphs.py
|
||||||
PUA_ADDER = map_pua_emoji.py
|
PUA_ADDER = map_pua_emoji.py
|
||||||
|
VS_ADDER = add_vs_cmap.py
|
||||||
|
|
||||||
%.ttx: %.ttx.tmpl $(ADD_GLYPHS) $(UNI) flag-symlinks
|
%.ttx: %.ttx.tmpl $(ADD_GLYPHS) $(UNI) flag-symlinks
|
||||||
python $(ADD_GLYPHS) "$<" "$@" "$(EMOJI_PNG128)"
|
python $(ADD_GLYPHS) "$<" "$@" "$(EMOJI_PNG128)"
|
||||||
|
@ -91,10 +92,13 @@ PUA_ADDER = map_pua_emoji.py
|
||||||
@rm -f "$@"
|
@rm -f "$@"
|
||||||
ttx "$<"
|
ttx "$<"
|
||||||
|
|
||||||
$(EMOJI).ttf: $(EMOJI).tmpl.ttf $(EMOJI_BUILDER) $(PUA_ADDER) $(EMOJI_PNG128)*.png flag-symlinks
|
$(EMOJI).ttf: $(EMOJI).tmpl.ttf $(EMOJI_BUILDER) $(PUA_ADDER) $(VS_ADDER) \
|
||||||
|
$(EMOJI_PNG128)*.png flag-symlinks
|
||||||
python $(EMOJI_BUILDER) -V $< "$@" $(EMOJI_PNG128)
|
python $(EMOJI_BUILDER) -V $< "$@" $(EMOJI_PNG128)
|
||||||
python $(PUA_ADDER) "$@" "$@-with-pua"
|
python $(PUA_ADDER) "$@" "$@-with-pua"
|
||||||
mv "$@-with-pua" "$@"
|
$(VS_ADDER) --dstdir '.' -o "$@-with-pua-varsel" "$@-with-pua"
|
||||||
|
mv "$@-with-pua-varsel" "$@"
|
||||||
|
rm "$@-with-pua"
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
rm -f $(EMOJI).ttf $(EMOJI).tmpl.ttf $(EMOJI).tmpl.ttx
|
rm -f $(EMOJI).ttf $(EMOJI).tmpl.ttf $(EMOJI).tmpl.ttx
|
||||||
|
|
Loading…
Reference in New Issue