2003-11-22 19:45:56 +01:00
|
|
|
bin_SCRIPTS = nix-collect-garbage \
|
2004-06-22 17:12:34 +02:00
|
|
|
nix-pull nix-push nix-prefetch-url \
|
2006-01-12 16:17:51 +01:00
|
|
|
nix-install-package nix-channel nix-build \
|
2010-12-05 18:36:02 +01:00
|
|
|
nix-copy-closure nix-generate-patches
|
2003-04-09 14:26:48 +02:00
|
|
|
|
2011-10-10 23:11:08 +02:00
|
|
|
noinst_SCRIPTS = nix-profile.sh \
|
2008-07-23 11:38:38 +02:00
|
|
|
find-runtime-roots.pl build-remote.pl nix-reduce-build \
|
2008-08-29 10:34:38 +02:00
|
|
|
copy-from-other-stores.pl nix-http-export.cgi
|
2003-07-13 20:58:03 +02:00
|
|
|
|
2013-01-02 23:52:15 +01:00
|
|
|
profiledir = $(sysconfdir)/profile.d
|
|
|
|
|
2012-06-30 00:28:52 +02:00
|
|
|
install-exec-local: download-using-manifests.pl copy-from-other-stores.pl download-from-binary-cache.pl find-runtime-roots.pl
|
2013-01-02 23:52:15 +01:00
|
|
|
$(INSTALL) -d $(DESTDIR)$(profiledir)
|
|
|
|
$(INSTALL_DATA) nix-profile.sh $(DESTDIR)$(profiledir)/nix.sh
|
2003-12-30 21:09:00 +01:00
|
|
|
$(INSTALL) -d $(DESTDIR)$(libexecdir)/nix
|
2006-07-19 18:49:59 +02:00
|
|
|
$(INSTALL_PROGRAM) find-runtime-roots.pl $(DESTDIR)$(libexecdir)/nix
|
2007-11-15 15:28:08 +01:00
|
|
|
$(INSTALL_PROGRAM) build-remote.pl $(DESTDIR)$(libexecdir)/nix
|
2008-07-18 15:05:10 +02:00
|
|
|
$(INSTALL) -d $(DESTDIR)$(libexecdir)/nix/substituters
|
2012-06-30 00:28:52 +02:00
|
|
|
$(INSTALL_PROGRAM) download-using-manifests.pl copy-from-other-stores.pl download-from-binary-cache.pl $(DESTDIR)$(libexecdir)/nix/substituters
|
2003-12-30 21:09:00 +01:00
|
|
|
$(INSTALL) -d $(DESTDIR)$(sysconfdir)/nix
|
2013-07-19 12:02:44 +02:00
|
|
|
ln -sf nix-build $(DESTDIR)$(bindir)/nix-shell
|
2003-07-13 20:58:03 +02:00
|
|
|
|
2003-07-18 09:42:57 +02:00
|
|
|
include ../substitute.mk
|
2003-07-23 17:53:34 +02:00
|
|
|
|
2003-11-24 12:11:40 +01:00
|
|
|
EXTRA_DIST = nix-collect-garbage.in \
|
2004-06-22 17:12:34 +02:00
|
|
|
nix-pull.in nix-push.in nix-profile.sh.in \
|
|
|
|
nix-prefetch-url.in nix-install-package.in \
|
|
|
|
nix-channel.in \
|
2004-12-20 17:38:50 +01:00
|
|
|
nix-build.in \
|
2005-03-01 12:27:22 +01:00
|
|
|
download-using-manifests.pl.in \
|
2008-07-12 20:58:24 +02:00
|
|
|
copy-from-other-stores.pl.in \
|
2012-06-30 00:28:52 +02:00
|
|
|
download-from-binary-cache.pl.in \
|
2007-02-22 00:14:53 +01:00
|
|
|
nix-copy-closure.in \
|
2007-11-15 16:33:30 +01:00
|
|
|
find-runtime-roots.pl.in \
|
2008-02-27 22:26:47 +01:00
|
|
|
build-remote.pl.in \
|
2008-08-29 10:34:38 +02:00
|
|
|
nix-reduce-build.in \
|
2010-12-05 18:36:02 +01:00
|
|
|
nix-http-export.cgi.in \
|
|
|
|
nix-generate-patches.in
|
2011-10-11 00:40:17 +02:00
|
|
|
|
|
|
|
clean:
|
|
|
|
rm -f $(bin_SCRIPTS) $(noinst_SCRIPTS)
|