about summary refs log tree commit diff
path: root/src/nix-env/Makefile.am
blob: 49282f1699929d5cd87e60200ce425ebee7a6007 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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