nix-super/Makefile.am

31 lines
875 B
Makefile
Raw Normal View History

2004-06-04 17:31:57 +03:00
SUBDIRS = externals src scripts corepkgs doc misc tests
2004-07-30 17:18:48 +03:00
EXTRA_DIST = substitute.mk nix.spec nix.spec.in bootstrap.sh
2004-01-02 18:04:53 +02:00
include ./substitute.mk
nix.spec: nix.spec.in
rpm: nix.spec dist
rpm $(EXTRA_RPM_FLAGS) -ta $(distdir).tar.gz
2004-01-22 15:04:57 +02:00
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