mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
11 lines
293 B
Makefile
11 lines
293 B
Makefile
RAGEL = ragel
|
|
|
|
.SUFFIXES: .rl
|
|
|
|
.rl.c:
|
|
$(RAGEL) -G2 $<
|
|
$(BASERUBY) -pli -e '$$_.sub!(/[ \t]+$$/, "")' \
|
|
-e '$$_.sub!(/^static const int (JSON_.*=.*);$$/, "enum {\\1};")' \
|
|
-e '$$_ = "/* This file is automatically generated from parser.rl by using ragel */" + $$_ if $$. == 1' $@
|
|
|
|
parser.c:
|