2004-06-04 14:31:57 +00:00
|
|
|
SUBDIRS = externals src scripts corepkgs doc misc tests
|
2004-01-02 16:04:53 +00:00
|
|
|
EXTRA_DIST = substitute.mk nix.spec nix.spec.in
|
2003-12-30 20:09:00 +00:00
|
|
|
|
2004-01-02 16:04:53 +00:00
|
|
|
include ./substitute.mk
|
|
|
|
|
|
|
|
nix.spec: nix.spec.in
|
|
|
|
|
|
|
|
rpm: nix.spec dist
|
2004-01-02 14:58:25 +00:00
|
|
|
rpm $(EXTRA_RPM_FLAGS) -ta $(distdir).tar.gz
|
2004-01-22 13:04:57 +00:00
|
|
|
|
|
|
|
relname:
|
|
|
|
echo -n $(distdir) > relname
|
2004-04-21 10:54:46 +00:00
|
|
|
|
|
|
|
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
|
2004-04-22 07:47:41 +00:00
|
|
|
$(INSTALL) -d $(DESTDIR)$(localstatedir)/nix/profiles
|
2004-04-22 14:17:57 +00:00
|
|
|
$(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
|
2004-04-21 10:54:46 +00:00
|
|
|
$(INSTALL) -d $(DESTDIR)$(prefix)/store
|
|
|
|
# $(bindir)/nix-store --init
|
|
|
|
else
|
|
|
|
init-state:
|
2004-04-22 14:17:57 +00:00
|
|
|
endif
|