forked from lix-project/lix
c5baaafae6
parser (roughly 80x faster). The absolutely latest version of Bison (1.875c) is required for reentrant GLR support, as well as a recent version of Flex (say, 2.5.31). Note that most Unix distributions ship with the prehistoric Flex 2.5.4, which doesn't support reentrancy.
23 lines
547 B
Makefile
23 lines
547 B
Makefile
noinst_LIBRARIES = libexpr.a
|
|
|
|
libexpr_a_SOURCES = nixexpr.cc nixexpr.hh parser.cc parser.hh \
|
|
eval.cc eval.hh primops.cc primops.hh \
|
|
lexer-tab.c lexer-tab.h parser-tab.c parser-tab.h
|
|
|
|
AM_CXXFLAGS = \
|
|
-I.. -I../../externals/inst/include -I../libutil -I../libstore
|
|
AM_CFLAGS = \
|
|
-I../../externals/inst/include
|
|
|
|
|
|
# Parser generation.
|
|
|
|
parser-tab.c parser-tab.h: parser.y
|
|
../grammartest/inst/bin/bison -v -o parser-tab.c parser.y -d
|
|
|
|
lexer-tab.c lexer-tab.h: lexer.l
|
|
flex --outfile lexer-tab.c --header-file=lexer-tab.h lexer.l
|
|
|
|
|
|
CLEANFILES =
|