2003-11-18 13:38:25 +02:00
|
|
|
bin_PROGRAMS = nix-store
|
2003-10-20 13:05:01 +03:00
|
|
|
|
2003-11-25 15:03:48 +02:00
|
|
|
nix_store_SOURCES = main.cc dotgraph.cc dotgraph.hh help.txt
|
2003-11-18 13:38:25 +02:00
|
|
|
nix_store_LDADD = ../libmain/libmain.a ../libstore/libstore.a ../libutil/libutil.a \
|
2003-11-18 12:47:59 +02:00
|
|
|
../boost/format/libformat.a -L../../externals/inst/lib -ldb_cxx -lATerm
|
2003-10-20 13:05:01 +03:00
|
|
|
|
2003-11-18 14:06:07 +02:00
|
|
|
main.o: help.txt.hh
|
2003-10-20 13:05:01 +03:00
|
|
|
|
|
|
|
%.hh: %
|
2003-11-18 14:06:07 +02:00
|
|
|
../bin2c/bin2c helpText < $< > $@ || (rm $@ && exit 1)
|
2003-10-20 13:05:01 +03:00
|
|
|
|
|
|
|
AM_CXXFLAGS = \
|
2003-11-18 12:55:27 +02:00
|
|
|
-I.. -I../../externals/inst/include -I../libutil -I../libstore -I../libmain
|
2003-10-20 13:05:01 +03:00
|
|
|
|
|
|
|
install-data-local:
|
|
|
|
$(INSTALL) -d $(localstatedir)/nix
|
|
|
|
$(INSTALL) -d $(localstatedir)/nix/db
|
|
|
|
$(INSTALL) -d $(localstatedir)/nix/links
|
|
|
|
rm -f $(prefix)/current
|
|
|
|
ln -sf $(localstatedir)/nix/links/current $(prefix)/current
|
|
|
|
$(INSTALL) -d $(localstatedir)/log/nix
|
|
|
|
$(INSTALL) -d $(prefix)/store
|
2003-11-18 13:38:25 +02:00
|
|
|
$(bindir)/nix-store --init
|