forked from lix-project/lix
66e94d3275
default -> default-94-link default-82-link -> /nix/store/cc4480... default-83-link -> /nix/store/caeec8... ... default-94-link -> /nix/store/2896ca... experimental -> experimental-2-link experimental-1-link -> /nix/store/cc4480... experimental-2-link -> /nix/store/a3148f... * `--profile' / `-p' -> `--switch-profile' / `-S' * `--link' / `-l' -> `--profile' / `-p' * The default profile is stored in $prefix/var/nix/profiles. $prefix/var/nix/links is gone. Profiles can be stored anywhere. * The current profile is now referenced from ~/.nix-profile, not ~/.nix-userenv. * The roots to the garbage collector now have extension `.gcroot', not `.id'.
21 lines
669 B
Makefile
21 lines
669 B
Makefile
bin_PROGRAMS = nix-store
|
|
|
|
nix_store_SOURCES = main.cc dotgraph.cc dotgraph.hh help.txt
|
|
nix_store_LDADD = ../libmain/libmain.a ../libstore/libstore.a ../libutil/libutil.a \
|
|
../boost/format/libformat.a -L../../externals/inst/lib -ldb_cxx -lATerm
|
|
|
|
main.o: help.txt.hh
|
|
|
|
%.txt.hh: %.txt
|
|
../bin2c/bin2c helpText < $< > $@ || (rm $@ && exit 1)
|
|
|
|
AM_CXXFLAGS = \
|
|
-I.. -I../../externals/inst/include -I../libutil -I../libstore -I../libmain
|
|
|
|
install-data-local:
|
|
$(INSTALL) -d $(DESTDIR)$(localstatedir)/nix
|
|
$(INSTALL) -d $(DESTDIR)$(localstatedir)/nix/db
|
|
$(INSTALL) -d $(DESTDIR)$(localstatedir)/log/nix
|
|
$(INSTALL) -d $(DESTDIR)$(prefix)/store
|
|
# $(bindir)/nix-store --init
|