mirror of
https://github.com/googlefonts/noto-emoji.git
synced 2025-06-08 07:47:59 +00:00
Rename variables in Makefile.
This commit is contained in:
parent
c7ae0b5128
commit
428e2914fa
1 changed files with 7 additions and 7 deletions
14
Makefile
14
Makefile
|
@ -14,22 +14,22 @@
|
||||||
# See the License for the specific language governing permissions and
|
# See the License for the specific language governing permissions and
|
||||||
# limitations under the License.
|
# limitations under the License.
|
||||||
|
|
||||||
FONT = NotoColorEmoji
|
EMOJI = NotoColorEmoji
|
||||||
PNGS_PREFIX1 = ./png/128/emoji_u
|
EMOJI_PNG128 = ./png/128/emoji_u
|
||||||
PNGS_PREFIX2 = ./png/64/emoji_u
|
EMOJI_PNG64 = ./png/64/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
|
||||||
|
|
||||||
%.ttx: %.ttx.tmpl $(ADD_GLYPHS) $(UNI)
|
%.ttx: %.ttx.tmpl $(ADD_GLYPHS) $(UNI)
|
||||||
python $(ADD_GLYPHS) "$<" "$@" "$(PNGS_PREFIX1)"
|
python $(ADD_GLYPHS) "$<" "$@" "$(EMOJI_PNG128)"
|
||||||
|
|
||||||
%.ttf: %.ttx
|
%.ttf: %.ttx
|
||||||
@rm -f "$@"
|
@rm -f "$@"
|
||||||
ttx "$<"
|
ttx "$<"
|
||||||
|
|
||||||
$(FONT).ttf: $(FONT).tmpl.ttf $(EMOJI_BUILDER) $(PNGS_PREFIX1)*.png $(PNGS_PREFIX2)*.png
|
$(EMOJI).ttf: $(EMOJI).tmpl.ttf $(EMOJI_BUILDER) $(EMOJI_PNG128)*.png $(EMOJI_PNG64)*.png
|
||||||
python $(EMOJI_BUILDER) -V $< "$@" $(PNGS_PREFIX1) $(PNGS_PREFIX2)
|
python $(EMOJI_BUILDER) -V $< "$@" $(EMOJI_PNG128) $(EMOJI_PNG64)
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
rm -f $(FONT).ttf $(FONT).tmpl.ttf $(FONT).tmpl.ttx
|
rm -f $(EMOJI).ttf $(EMOJI).tmpl.ttf $(EMOJI).tmpl.ttx
|
||||||
|
|
Loading…
Add table
Reference in a new issue