2013-11-22 16:54:18 +02:00
|
|
|
LIBS += libexpr
|
|
|
|
|
2013-11-22 18:45:52 +02:00
|
|
|
libexpr_DIR := $(d)
|
2013-11-22 16:54:18 +02:00
|
|
|
|
|
|
|
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 18:45:52 +02:00
|
|
|
$(d)/parser-tab.cc $(d)/parser-tab.hh: $(d)/parser.y
|
|
|
|
bison -v -o $(libexpr_DIR)/parser-tab.cc $< -d
|
2013-11-22 17:22:31 +02:00
|
|
|
|
2013-11-22 18:45:52 +02:00
|
|
|
$(d)/lexer-tab.cc $(d)/lexer-tab.hh: $(d)/lexer.l
|
|
|
|
flex --outfile $(libexpr_DIR)/lexer-tab.cc --header-file=$(libexpr_DIR)/lexer-tab.hh $<
|