diff options
author | Eelco Dolstra <eelco.dolstra@logicblox.com> | 2014-02-01T15·41+0100 |
---|---|---|
committer | Eelco Dolstra <eelco.dolstra@logicblox.com> | 2014-02-01T15·41+0100 |
commit | 2f9bb5c7e744ddca3fbe5576e520a3e80c106c55 (patch) | |
tree | 7a3d5d57a460aa87a8f8b58d46102ca339e97770 /src/libexpr/Makefile.am | |
parent | c5ba08133370f98de722c978bda3b446721985de (diff) | |
parent | 6dca72006aa9b1cf2f226bb5b538e744fcab976f (diff) |
Merge branch 'make'
Diffstat (limited to 'src/libexpr/Makefile.am')
-rw-r--r-- | src/libexpr/Makefile.am | 40 |
1 files changed, 0 insertions, 40 deletions
diff --git a/src/libexpr/Makefile.am b/src/libexpr/Makefile.am deleted file mode 100644 index 7edbe77157d8..000000000000 --- a/src/libexpr/Makefile.am +++ /dev/null @@ -1,40 +0,0 @@ -pkglib_LTLIBRARIES = libexpr.la - -libexpr_la_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 - -pkginclude_HEADERS = \ - nixexpr.hh eval.hh eval-inline.hh lexer-tab.hh parser-tab.hh \ - get-drvs.hh attr-path.hh value-to-xml.hh value-to-json.hh \ - common-opts.hh names.hh symbol-table.hh value.hh - -libexpr_la_LIBADD = ../libutil/libutil.la ../libstore/libstore.la \ - ../boost/format/libformat.la @BDW_GC_LIBS@ - -BUILT_SOURCES = \ - parser-tab.hh lexer-tab.hh parser-tab.cc lexer-tab.cc - -EXTRA_DIST = lexer.l parser.y - -AM_CXXFLAGS = \ - -I$(srcdir)/.. \ - -I$(srcdir)/../libutil -I$(srcdir)/../libstore - - -# Parser generation. - -parser-tab.cc parser-tab.hh: parser.y - $(bison) -v -o parser-tab.cc $(srcdir)/parser.y -d - -lexer-tab.cc lexer-tab.hh: lexer.l - $(flex) --outfile lexer-tab.cc --header-file=lexer-tab.hh $(srcdir)/lexer.l - - -# SDF stuff (not built by default). -nix.tbl: nix.sdf - sdf2table -m Nix -s -i nix.sdf -o nix.tbl - -test.ast: test.nix nix.tbl - sglri -p nix.tbl -i test.nix -o test.ast |