diff options
Diffstat (limited to 'src/nix-store')
-rw-r--r-- | src/nix-store/Makefile.am | 12 | ||||
-rw-r--r-- | src/nix-store/local.mk | 9 |
2 files changed, 9 insertions, 12 deletions
diff --git a/src/nix-store/Makefile.am b/src/nix-store/Makefile.am deleted file mode 100644 index fca9eff7cde8..000000000000 --- a/src/nix-store/Makefile.am +++ /dev/null @@ -1,12 +0,0 @@ -bin_PROGRAMS = nix-store - -nix_store_SOURCES = \ - nix-store.cc dotgraph.cc dotgraph.hh \ - xmlgraph.cc xmlgraph.hh - -nix_store_LDADD = ../libmain/libmain.la ../libstore/libstore.la ../libutil/libutil.la \ - ../boost/format/libformat.la -lbz2 - -AM_CXXFLAGS = \ - -I$(srcdir)/.. -I$(srcdir)/../libutil \ - -I$(srcdir)/../libstore -I$(srcdir)/../libmain diff --git a/src/nix-store/local.mk b/src/nix-store/local.mk new file mode 100644 index 000000000000..7f93e4c19196 --- /dev/null +++ b/src/nix-store/local.mk @@ -0,0 +1,9 @@ +programs += nix-store + +nix-store_DIR := $(d) + +nix-store_SOURCES := $(wildcard $(d)/*.cc) + +nix-store_LIBS = libmain libstore libutil libformat + +nix-store_LDFLAGS = -lbz2 |