eolian: generate eo_lexer.c with ragel if available

This commit is contained in:
Jérémy Zurcher 2014-03-10 18:14:16 +01:00
parent c6589ffc19
commit 995eac166a
2 changed files with 18 additions and 0 deletions

View File

@ -330,6 +330,11 @@ fi
AM_CONDITIONAL([EFL_ENABLE_COVERAGE], [test "${want_coverage}" = "yes"])
# ragel
AC_CHECK_PROG([have_ragel], [ragel], [yes], [no])
AM_CONDITIONAL([EFL_HAVE_RAGEL], [test "${have_ragel}" = "yes"])
#### Checks for libraries
# check unit testing library

View File

@ -42,3 +42,16 @@ bin_eolian_eolian_gen_DEPENDENCIES = @USE_EOLIAN_INTERNAL_LIBS@
include Makefile_Eolian_Helper.am
EXTRA_DIST += lib/eolian/eo_lexer.rl
if EFL_HAVE_RAGEL
SUFFIXES += .rl
AM_V_RAGEL = $(am__v_RAGEL_@AM_V@)
am__v_RAGEL_ = $(am__v_RAGEL_@AM_DEFAULT_V@)
am__v_RAGEL_0 = @echo " RAGEL " $@;
.rl.c:
$(AM_V_RAGEL) ragel -o $@ $<
lib/eolian/eo_lexer.c: lib/eolian/eo_lexer.rl
endif