diff options
author | Eelco Dolstra <eelco.dolstra@logicblox.com> | 2013-11-22T14·54+0100 |
---|---|---|
committer | Eelco Dolstra <eelco.dolstra@logicblox.com> | 2013-11-22T14·54+0100 |
commit | b8e9efc476abc248a17c9e9cd117f3d53e4a7f63 (patch) | |
tree | 3529e1c6b88983e26290d4c72aa0d3274aeb6375 /src/libexpr/Makefile.new | |
parent | 709cbe4e76e7b0f1b8abddbeb7714e194f6f8a02 (diff) |
New non-recursive, plain Make-based build system
Diffstat (limited to 'src/libexpr/Makefile.new')
-rw-r--r-- | src/libexpr/Makefile.new | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/libexpr/Makefile.new b/src/libexpr/Makefile.new new file mode 100644 index 000000000000..f6c900431562 --- /dev/null +++ b/src/libexpr/Makefile.new @@ -0,0 +1,10 @@ +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 + +# FIXME: add rules for parser-tab.cc / lexer-tab.cc. |