about summary refs log tree commit diff
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2014-02-01T11·23+0100
committerEelco Dolstra <eelco.dolstra@logicblox.com>2014-02-01T12·54+0100
commit16e7d692092449263880ee795ec419cecbe22d24 (patch)
treee42cdbfb28006768699cac05f911a644d37ba8fb
parentac8c2ef1aa30c50b568883d2051335a66437694f (diff)
Update Makefile variable names
-rw-r--r--Makefile2
-rw-r--r--corepkgs/local.mk2
-rw-r--r--doc/manual/local.mk8
-rw-r--r--perl/local.mk6
-rw-r--r--scripts/local.mk8
-rw-r--r--src/boost/format/local.mk2
-rw-r--r--src/bsdiff-4.3/local.mk4
-rw-r--r--src/libexpr/local.mk2
-rw-r--r--src/libmain/local.mk2
-rw-r--r--src/libstore/local.mk2
-rw-r--r--src/libutil/local.mk2
-rw-r--r--src/nix-daemon/local.mk2
-rw-r--r--src/nix-env/local.mk2
-rw-r--r--src/nix-hash/local.mk2
-rw-r--r--src/nix-instantiate/local.mk2
-rw-r--r--src/nix-log2xml/local.mk2
-rw-r--r--src/nix-store/local.mk2
-rw-r--r--tests/local.mk6
18 files changed, 29 insertions, 29 deletions
diff --git a/Makefile b/Makefile
index f22a70a81c..df72578cc5 100644
--- a/Makefile
+++ b/Makefile
@@ -1,4 +1,4 @@
-SUBS = \
+makefiles = \
   src/boost/format/local.mk \
   src/libutil/local.mk \
   src/libstore/local.mk \
diff --git a/corepkgs/local.mk b/corepkgs/local.mk
index a04e3e3fbc..19c1d06962 100644
--- a/corepkgs/local.mk
+++ b/corepkgs/local.mk
@@ -2,4 +2,4 @@ corepkgs_FILES = nar.nix buildenv.nix buildenv.pl unpack-channel.nix derivation.
 
 $(foreach file,config.nix $(corepkgs_FILES),$(eval $(call install-data-in,$(d)/$(file),$(datadir)/nix/corepkgs)))
 
-template_files += $(d)/config.nix
+template-files += $(d)/config.nix
diff --git a/doc/manual/local.mk b/doc/manual/local.mk
index ae3a9df5c8..8d49e1e4d5 100644
--- a/doc/manual/local.mk
+++ b/doc/manual/local.mk
@@ -26,7 +26,7 @@ $(d)/manual.is-valid: $(d)/manual.xmli
 	  $(xmllint) --nonet --noout --relaxng $(docbookrng)/docbook.rng -
 	@touch $@
 
-clean_files += $(d)/manual.xmli $(d)/version.txt $(d)/manual.is-valid
+clean-files += $(d)/manual.xmli $(d)/version.txt $(d)/manual.is-valid
 
 
 # Generate man pages.
@@ -43,7 +43,7 @@ $(man-pages): $(d)/manual.xmli $(d)/manual.is-valid
 	  $(docbookxsl)/profiling/profile.xsl $< 2> /dev/null | \
 	  (cd doc/manual && $(XSLTPROC) $(docbookxsl)/manpages/docbook.xsl -)
 
-clean_files += $(d)/*.1 $(d)/*.5 $(d)/*.8
+clean-files += $(d)/*.1 $(d)/*.5 $(d)/*.8
 
 
 # Generate the HTML manual.
@@ -62,7 +62,7 @@ $(eval $(call install-symlink, manual.html, $(docdir)/manual/index.html))
 
 all: $(d)/manual.html
 
-clean_files += $(d)/manual.html
+clean-files += $(d)/manual.html
 
 
 # Generate the PDF manual.
@@ -76,4 +76,4 @@ $(d)/manual.pdf: $(d)/manual.xml $(MANUAL_SRCS) $(d)/manual.is-valid
 		exit 1; \
 	fi
 
-clean_files += $(d)/manual.pdf
+clean-files += $(d)/manual.pdf
diff --git a/perl/local.mk b/perl/local.mk
index cd07631ca8..b5550cc9f8 100644
--- a/perl/local.mk
+++ b/perl/local.mk
@@ -17,7 +17,7 @@ ifeq ($(perlbindings), yes)
   $(d)/lib/Nix/Store.cc: $(d)/lib/Nix/Store.xs
 	xsubpp $^ -output $@
 
-  LIBS += Store
+  libraries += Store
 
   Store_DIR := $(d)/lib/Nix
 
@@ -37,6 +37,6 @@ ifeq ($(perlbindings), yes)
 
 endif
 
-clean_files += $(d)/lib/Nix/Config.pm $(d)/lib/Nix/Store.cc
+clean-files += $(d)/lib/Nix/Config.pm $(d)/lib/Nix/Store.cc
 
-dist_files += $(nix_perl_sources)
+dist-files += $(nix_perl_sources)
diff --git a/scripts/local.mk b/scripts/local.mk
index 2805128db8..606b73df6c 100644
--- a/scripts/local.mk
+++ b/scripts/local.mk
@@ -9,7 +9,7 @@ nix_bin_scripts := \
   $(d)/nix-pull \
   $(d)/nix-push
 
-bin_SCRIPTS += $(nix_bin_scripts)
+bin-scripts += $(nix_bin_scripts)
 
 nix_substituters := \
   $(d)/copy-from-other-stores.pl \
@@ -24,7 +24,7 @@ nix_noinst_scripts := \
   $(d)/nix-reduce-build \
   $(nix_substituters)
 
-noinst_SCRIPTS += $(nix_noinst_scripts)
+noinst-scripts += $(nix_noinst_scripts)
 
 profiledir = $(sysconfdir)/profile.d
 
@@ -34,6 +34,6 @@ $(eval $(call install-program-in, $(d)/build-remote.pl, $(libexecdir)/nix))
 $(foreach prog, $(nix_substituters), $(eval $(call install-program-in, $(prog), $(libexecdir)/nix/substituters)))
 $(eval $(call install-symlink, nix-build, $(bindir)/nix-shell))
 
-clean_files += $(nix_bin_scripts) $(nix_noinst_scripts)
+clean-files += $(nix_bin_scripts) $(nix_noinst_scripts)
 
-dist_files += $(d)/*.in
+dist-files += $(d)/*.in
diff --git a/src/boost/format/local.mk b/src/boost/format/local.mk
index 17897fa590..3776eff382 100644
--- a/src/boost/format/local.mk
+++ b/src/boost/format/local.mk
@@ -1,4 +1,4 @@
-LIBS += libformat
+libraries += libformat
 
 libformat_NAME = libnixformat
 
diff --git a/src/bsdiff-4.3/local.mk b/src/bsdiff-4.3/local.mk
index aca1ac1162..320795a94c 100644
--- a/src/bsdiff-4.3/local.mk
+++ b/src/bsdiff-4.3/local.mk
@@ -1,4 +1,4 @@
-PROGRAMS += bsdiff bspatch
+programs += bsdiff bspatch
 
 bsdiff_DIR := $(d)
 bsdiff_SOURCES := $(d)/bsdiff.c
@@ -10,4 +10,4 @@ bspatch_SOURCES := $(d)/bspatch.c
 bspatch_LDFLAGS = -lbz2 $(bsddiff_compat_include)
 bspatch_INSTALL_DIR = $(libexecdir)/nix
 
-dist_files += $(d)/compat-include/*
+dist-files += $(d)/compat-include/*
diff --git a/src/libexpr/local.mk b/src/libexpr/local.mk
index de276aa652..ff35155b1a 100644
--- a/src/libexpr/local.mk
+++ b/src/libexpr/local.mk
@@ -1,4 +1,4 @@
-LIBS += libexpr
+libraries += libexpr
 
 libexpr_NAME = libnixexpr
 
diff --git a/src/libmain/local.mk b/src/libmain/local.mk
index 0efeee5314..71a07d1979 100644
--- a/src/libmain/local.mk
+++ b/src/libmain/local.mk
@@ -1,4 +1,4 @@
-LIBS += libmain
+libraries += libmain
 
 libmain_NAME = libnixmain
 
diff --git a/src/libstore/local.mk b/src/libstore/local.mk
index dcedd4c26a..a9ae532700 100644
--- a/src/libstore/local.mk
+++ b/src/libstore/local.mk
@@ -1,4 +1,4 @@
-LIBS += libstore
+libraries += libstore
 
 libstore_NAME = libnixstore
 
diff --git a/src/libutil/local.mk b/src/libutil/local.mk
index 83bd05f281..8af2e78d9c 100644
--- a/src/libutil/local.mk
+++ b/src/libutil/local.mk
@@ -1,4 +1,4 @@
-LIBS += libutil
+libraries += libutil
 
 libutil_NAME = libnixutil
 
diff --git a/src/nix-daemon/local.mk b/src/nix-daemon/local.mk
index d02f9f6ce2..db071a3f7c 100644
--- a/src/nix-daemon/local.mk
+++ b/src/nix-daemon/local.mk
@@ -1,4 +1,4 @@
-PROGRAMS += nix-daemon
+programs += nix-daemon
 
 nix-daemon_DIR := $(d)
 
diff --git a/src/nix-env/local.mk b/src/nix-env/local.mk
index 5a38d2fb76..e80719cd76 100644
--- a/src/nix-env/local.mk
+++ b/src/nix-env/local.mk
@@ -1,4 +1,4 @@
-PROGRAMS += nix-env
+programs += nix-env
 
 nix-env_DIR := $(d)
 
diff --git a/src/nix-hash/local.mk b/src/nix-hash/local.mk
index 062e4d13b2..7c290ca846 100644
--- a/src/nix-hash/local.mk
+++ b/src/nix-hash/local.mk
@@ -1,4 +1,4 @@
-PROGRAMS += nix-hash
+programs += nix-hash
 
 nix-hash_DIR := $(d)
 
diff --git a/src/nix-instantiate/local.mk b/src/nix-instantiate/local.mk
index daa741eb7f..7d1bc5ec9d 100644
--- a/src/nix-instantiate/local.mk
+++ b/src/nix-instantiate/local.mk
@@ -1,4 +1,4 @@
-PROGRAMS += nix-instantiate
+programs += nix-instantiate
 
 nix-instantiate_DIR := $(d)
 
diff --git a/src/nix-log2xml/local.mk b/src/nix-log2xml/local.mk
index 8467d1973b..46eb2e02ca 100644
--- a/src/nix-log2xml/local.mk
+++ b/src/nix-log2xml/local.mk
@@ -1,4 +1,4 @@
-PROGRAMS += nix-log2xml
+programs += nix-log2xml
 
 nix-log2xml_DIR := $(d)
 
diff --git a/src/nix-store/local.mk b/src/nix-store/local.mk
index edd111b420..7f93e4c191 100644
--- a/src/nix-store/local.mk
+++ b/src/nix-store/local.mk
@@ -1,4 +1,4 @@
-PROGRAMS += nix-store
+programs += nix-store
 
 nix-store_DIR := $(d)
 
diff --git a/tests/local.mk b/tests/local.mk
index 21ffd047f6..87f4e25e60 100644
--- a/tests/local.mk
+++ b/tests/local.mk
@@ -12,10 +12,10 @@ nix_tests = \
   multiple-outputs.sh import-derivation.sh fetchurl.sh optimise-store.sh \
   binary-cache.sh nix-profile.sh
 
-INSTALL_TESTS += $(foreach x, $(nix_tests), tests/$(x))
+install-tests += $(foreach x, $(nix_tests), tests/$(x))
 
-TESTS_ENVIRONMENT = NIX_REMOTE= $(bash) -e
+tests-environment = NIX_REMOTE= $(bash) -e
 
-clean_files += $(d)/common.sh
+clean-files += $(d)/common.sh
 
 installcheck: $(d)/common.sh