2003-10-20 13:05:01 +03:00
|
|
|
bin_PROGRAMS = nix
|
|
|
|
|
|
|
|
nix_SOURCES = nix.cc dotgraph.cc
|
2003-11-18 12:55:27 +02:00
|
|
|
nix_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
|
|
|
|
|
|
|
nix.o: nix-help.txt.hh
|
|
|
|
|
|
|
|
%.hh: %
|
|
|
|
echo -n '"' > $@
|
|
|
|
sed 's|\(.*\)|\1\\n\\|' < $< >> $@
|
|
|
|
echo '"' >> $@
|
|
|
|
|
|
|
|
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
|
|
|
|
$(bindir)/nix --init
|
|
|
|
|
|
|
|
EXTRA_DIST = *.hh
|