about summary refs log tree commit diff
path: root/src/libexpr/Makefile.am
blob: 39423394af696ccb83ded985c0c31fbdb7ab26d5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
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 common-opts.cc \
 names.cc

pkginclude_HEADERS = \
 nixexpr.hh eval.hh parser.hh lexer-tab.hh parser-tab.hh \
 get-drvs.hh attr-path.hh value-to-xml.hh common-opts.hh \
 names.hh symbol-table.hh

libexpr_la_LIBADD = ../libutil/libutil.la ../libstore/libstore.la \
 ../boost/format/libformat.la

BUILT_SOURCES = \
 parser-tab.hh lexer-tab.hh parser-tab.cc lexer-tab.cc

EXTRA_DIST = lexer.l parser.y

AM_CXXFLAGS = \
 -I$(srcdir)/.. ${aterm_include} \
 -I$(srcdir)/../libutil -I$(srcdir)/../libstore
AM_CFLAGS = \
 ${aterm_include}


# 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


# Testing.
bin_PROGRAMS = eval-test

eval_test_LDADD = ../libmain/libmain.la ../libexpr/libexpr.la \
 ../libstore/libstore.la ../libutil/libutil.la \
 ../boost/format/libformat.la ${aterm_lib} @ADDITIONAL_NETWORK_LIBS@