forked from lix-project/lix
d7238bc84e
is specified.
17 lines
469 B
Makefile
17 lines
469 B
Makefile
bin_PROGRAMS = nix-env
|
|
|
|
nix_env_SOURCES = main.cc names.cc names.hh \
|
|
profiles.cc profiles.hh help.txt
|
|
nix_env_LDADD = ../libmain/libmain.a ../libexpr/libexpr.a \
|
|
../libstore/libstore.a ../libutil/libutil.a \
|
|
../boost/format/libformat.a ${bdb_lib} ${aterm_lib}
|
|
|
|
main.o: help.txt.hh
|
|
|
|
%.txt.hh: %.txt
|
|
../bin2c/bin2c helpText < $< > $@ || (rm $@ && exit 1)
|
|
|
|
AM_CXXFLAGS = \
|
|
-I.. ${bdb_include} ${aterm_include} -I../libutil -I../libstore \
|
|
-I../libexpr -I../libmain
|