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