20 lines
461 B
Makefile
20 lines
461 B
Makefile
noinst_LIBRARIES = libexpr.a
|
|
|
|
libexpr_a_SOURCES = nixexpr.cc nixexpr.hh parser.cc parser.hh \
|
|
eval.cc eval.hh primops.cc primops.hh nix.sdf
|
|
|
|
AM_CXXFLAGS = \
|
|
-I.. -I../../externals/inst/include -I../libutil -I../libstore
|
|
|
|
|
|
# Parse table generation.
|
|
|
|
parser.o: parse-table.h
|
|
|
|
parse-table.h: nix.tbl
|
|
../bin2c/bin2c nixParseTable < $< > $@ || (rm $@ && exit 1)
|
|
|
|
%.tbl: %.sdf
|
|
../../externals/inst/bin/sdf2table -s -i $< -o $@
|
|
|
|
CLEANFILES = parse-table.h nix.tbl
|