Browse Source

make: support calling the _emoji build rule when CLDR_PATH is not specified

master
Reece H. Dunn 8 years ago
parent
commit
5c5bb2683f
1 changed files with 8 additions and 4 deletions
  1. 8
    4
      Makefile.am

+ 8
- 4
Makefile.am View File

@@ -411,10 +411,14 @@ espeakdata: \

dictsource/%_emoji:
@echo " EMOJI $@"
@tools/emoji \
dictsource/en_emoji \
`echo $@ | sed -e 's,dictsource/,,g' -e 's,_emoji,,g'` \
${CLDR_PATH} > $@
@if test x"${CLDR_PATH}" = x ; then \
touch $@ ; \
else \
tools/emoji \
dictsource/en_emoji \
`echo $@ | sed -e 's,dictsource/,,g' -e 's,_emoji,,g'` \
${CLDR_PATH} > $@ ; \
fi

dictsource/%_extra:
touch $@

Loading…
Cancel
Save