2013-11-22 14:54:18 +00:00
|
|
|
LIBS += libexpr
|
|
|
|
|
|
|
|
libexpr_DIR := $(here)
|
|
|
|
|
|
|
|
libexpr_SOURCES = \
|
|
|
|
nixexpr.cc eval.cc primops.cc lexer-tab.cc parser-tab.cc \
|
|
|
|
get-drvs.cc attr-path.cc value-to-xml.cc value-to-json.cc \
|
|
|
|
common-opts.cc names.cc
|
|
|
|
|
2013-11-22 15:22:31 +00:00
|
|
|
$(here)parser-tab.cc $(here)parser-tab.hh: $(here)parser.y
|
|
|
|
bison -v -o $(here)parser-tab.cc $< -d
|
|
|
|
|
|
|
|
$(here)lexer-tab.cc $(here)lexer-tab.hh: $(here)lexer.l
|
|
|
|
flex --outfile $(here)lexer-tab.cc --header-file=$(here)lexer-tab.hh $<
|