forked from lix-project/lix
9b44480612
* Various performance improvements in the evaluator. * Do not link against unused (and missing!) libraries (-lsglr, etc.).
17 lines
446 B
Makefile
17 lines
446 B
Makefile
bin_PROGRAMS = nix-env
|
|
|
|
nix_env_SOURCES = main.cc help.txt
|
|
nix_env_LDADD = ../libmain/libmain.a ../libexpr/libexpr.a \
|
|
../libstore/libstore.a ../libutil/libutil.a \
|
|
../boost/format/libformat.a -L../../externals/inst/lib -ldb_cxx \
|
|
-lATerm
|
|
|
|
main.o: help.txt.hh
|
|
|
|
%.txt.hh: %.txt
|
|
../bin2c/bin2c helpText < $< > $@ || (rm $@ && exit 1)
|
|
|
|
AM_CXXFLAGS = \
|
|
-I.. -I../../externals/inst/include -I../libutil -I../libstore \
|
|
-I../libexpr -I../libmain
|