about summary refs log tree commit diff
path: root/Makefile.am
blob: fcd3405b55dd978402f6fb4140981f525e0471a3 (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
SUBDIRS = externals src scripts corepkgs doc tests
EXTRA_DIST = substitute.mk nix.spec nix.spec.in

include ./substitute.mk

nix.spec: nix.spec.in

rpm: nix.spec dist
	rpm $(EXTRA_RPM_FLAGS) -ta $(distdir).tar.gz

relname:
	echo -n $(distdir) > relname

install-data-local: init-state

if INIT_STATE
init-state:
	$(INSTALL) -d $(DESTDIR)$(localstatedir)/nix
	$(INSTALL) -d $(DESTDIR)$(localstatedir)/nix/db
	$(INSTALL) -d $(DESTDIR)$(localstatedir)/log/nix
	$(INSTALL) -d $(DESTDIR)$(localstatedir)/nix/profiles
	$(INSTALL) -d $(DESTDIR)$(localstatedir)/nix/gcroots
	$(INSTALL) -d $(DESTDIR)$(localstatedir)/nix/gcroots/tmp
	rm -f $(DESTDIR)$(localstatedir)/nix/gcroots/profiles
	ln -s $(localstatedir)/nix/profiles $(DESTDIR)$(localstatedir)/nix/gcroots/profiles
	$(INSTALL) -d $(DESTDIR)$(prefix)/store
#	$(bindir)/nix-store --init
else
init-state:
endif