2003-11-18 11:38:25 +00:00
|
|
|
bin_PROGRAMS = nix-store
|
2003-10-20 10:05:01 +00:00
|
|
|
|
2003-11-25 13:03:48 +00:00
|
|
|
nix_store_SOURCES = main.cc dotgraph.cc dotgraph.hh help.txt
|
2003-11-18 11:38:25 +00:00
|
|
|
nix_store_LDADD = ../libmain/libmain.a ../libstore/libstore.a ../libutil/libutil.a \
|
2004-02-16 16:37:16 +00:00
|
|
|
../boost/format/libformat.a ${bdb_lib} ${aterm_lib}
|
2003-10-20 10:05:01 +00:00
|
|
|
|
2003-11-18 12:06:07 +00:00
|
|
|
main.o: help.txt.hh
|
2003-10-20 10:05:01 +00:00
|
|
|
|
2003-12-01 15:55:05 +00:00
|
|
|
%.txt.hh: %.txt
|
2003-11-18 12:06:07 +00:00
|
|
|
../bin2c/bin2c helpText < $< > $@ || (rm $@ && exit 1)
|
2003-10-20 10:05:01 +00:00
|
|
|
|
|
|
|
AM_CXXFLAGS = \
|
2004-02-16 16:37:16 +00:00
|
|
|
-I.. ${bdb_include} $(aterm_include) -I../libutil -I../libstore -I../libmain
|