tvl-depot/src/libexpr/Makefile.am

21 lines
461 B
Text
Raw Normal View History

2003-11-19 13:03:01 +01:00
noinst_LIBRARIES = libexpr.a
2003-10-29 16:05:18 +01:00
2003-11-25 14:01:21 +01:00
libexpr_a_SOURCES = nixexpr.cc nixexpr.hh parser.cc parser.hh \
eval.cc eval.hh primops.cc primops.hh nix.sdf
2003-10-29 16:05:18 +01:00
AM_CXXFLAGS = \
2003-11-19 13:03:01 +01:00
-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