2003-11-19 17:27:16 +00:00
|
|
|
bin_PROGRAMS = nix-env
|
|
|
|
|
2006-12-07 20:47:30 +00:00
|
|
|
nix_env_SOURCES = nix-env.cc names.cc names.hh \
|
2004-02-06 14:57:10 +00:00
|
|
|
profiles.cc profiles.hh help.txt
|
2005-07-22 14:52:45 +00:00
|
|
|
nix_env_LDADD = ../libmain/libmain.la ../libexpr/libexpr.la \
|
|
|
|
../libstore/libstore.la ../libutil/libutil.la \
|
|
|
|
../boost/format/libformat.la ${bdb_lib} ${aterm_lib}
|
2003-11-19 17:27:16 +00:00
|
|
|
|
2003-12-01 15:55:05 +00:00
|
|
|
main.o: help.txt.hh
|
|
|
|
|
|
|
|
%.txt.hh: %.txt
|
|
|
|
../bin2c/bin2c helpText < $< > $@ || (rm $@ && exit 1)
|
|
|
|
|
2003-11-19 17:27:16 +00:00
|
|
|
AM_CXXFLAGS = \
|
2006-05-12 11:47:45 +00:00
|
|
|
-I$(srcdir)/.. ${bdb_include} ${aterm_include} \
|
|
|
|
-I$(srcdir)/../libutil -I$(srcdir)/../libstore \
|
|
|
|
-I$(srcdir)/../libexpr -I$(srcdir)/../libmain -I../libexpr
|