about summary refs log tree commit diff
path: root/scripts/Makefile.am
blob: aa5d6f78c18a3e3a902949b75d36ad0c94a0d98a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
bin_SCRIPTS = nix-collect-garbage \
  nix-pull nix-push nix-prefetch-url \
  nix-install-package nix-channel nix-build \
  nix-copy-closure 

noinst_SCRIPTS = nix-profile.sh generate-patches.pl \
  find-runtime-roots.pl build-remote.pl nix-reduce-build \
  copy-from-other-stores.pl nix-http-export.cgi

nix-pull nix-push: readmanifest.pm readconfig.pm download-using-manifests.pl

install-exec-local: readmanifest.pm download-using-manifests.pl copy-from-other-stores.pl find-runtime-roots.pl
	$(INSTALL) -d $(DESTDIR)$(sysconfdir)/profile.d
	$(INSTALL_PROGRAM) nix-profile.sh $(DESTDIR)$(sysconfdir)/profile.d/nix.sh
	$(INSTALL) -d $(DESTDIR)$(libexecdir)/nix
	$(INSTALL_DATA) readmanifest.pm $(DESTDIR)$(libexecdir)/nix 
	$(INSTALL_DATA) readconfig.pm $(DESTDIR)$(libexecdir)/nix 
	$(INSTALL_DATA) ssh.pm $(DESTDIR)$(libexecdir)/nix 
	$(INSTALL_PROGRAM) find-runtime-roots.pl $(DESTDIR)$(libexecdir)/nix 
	$(INSTALL_PROGRAM) generate-patches.pl $(DESTDIR)$(libexecdir)/nix 
	$(INSTALL_PROGRAM) build-remote.pl $(DESTDIR)$(libexecdir)/nix 
	$(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
	$(INSTALL) -d $(DESTDIR)$(sysconfdir)/nix

include ../substitute.mk

EXTRA_DIST = nix-collect-garbage.in \
  nix-pull.in nix-push.in nix-profile.sh.in \
  nix-prefetch-url.in nix-install-package.in \
  nix-channel.in \
  readmanifest.pm.in \
  readconfig.pm.in \
  ssh.pm \
  nix-build.in \
  download-using-manifests.pl.in \
  copy-from-other-stores.pl.in \
  generate-patches.pl.in \
  nix-copy-closure.in \
  find-runtime-roots.pl.in \
  build-remote.pl.in \
  nix-reduce-build.in \
  nix-http-export.cgi.in