about summary refs log blame commit diff
path: root/src/libexpr/Makefile.am
blob: 66a3008ed507773deac57a9f8a6ac05376c31b16 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
                            
 
                                                               

                                                  

               
                                                               

                               

 
                    
 

                                                                    
 

                                                                     
 
 
            
noinst_LIBRARIES = libexpr.a

libexpr_a_SOURCES = nixexpr.cc nixexpr.hh parser.cc parser.hh \
 eval.cc eval.hh primops.cc primops.hh \
 lexer-tab.c lexer-tab.h parser-tab.c parser-tab.h

AM_CXXFLAGS = \
 -I.. -I../../externals/inst/include -I../libutil -I../libstore
AM_CFLAGS = \
 -I../../externals/inst/include


# Parser generation.

parser-tab.c parser-tab.h: parser.y
	../grammartest/inst/bin/bison -v -o parser-tab.c parser.y -d

lexer-tab.c lexer-tab.h: lexer.l
	flex --outfile lexer-tab.c --header-file=lexer-tab.h lexer.l 


CLEANFILES =