1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2024-09-20 11:11:03 -04:00
nix/src/libexpr/Makefile.am

21 lines
461 B
Makefile
Raw Normal View History

2003-11-19 07:03:01 -05:00
noinst_LIBRARIES = libexpr.a
2003-10-29 10:05:18 -05:00
2003-11-25 08:01:21 -05: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 10:05:18 -05:00
AM_CXXFLAGS = \
2003-11-19 07:03:01 -05: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