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