summaryrefslogtreecommitdiff
path: root/Makefile.am
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile.am')
-rw-r--r--Makefile.am12
1 files changed, 11 insertions, 1 deletions
diff --git a/Makefile.am b/Makefile.am
index 5bfc9ca88c6..e1c7cdd7fa9 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -420,6 +420,7 @@ EXTRA_DIST = \
420 build-aux/generate-authors.scm \ 420 build-aux/generate-authors.scm \
421 build-aux/test-driver.scm \ 421 build-aux/test-driver.scm \
422 build-aux/update-guix-package.scm \ 422 build-aux/update-guix-package.scm \
423 build-aux/update-NEWS.scm \
423 build-aux/run-system-tests.scm \ 424 build-aux/run-system-tests.scm \
424 d3.v3.js \ 425 d3.v3.js \
425 graph.js \ 426 graph.js \
@@ -641,6 +642,15 @@ update-guix-package:
641 $(top_srcdir)/build-aux/update-guix-package.scm \ 642 $(top_srcdir)/build-aux/update-guix-package.scm \
642 "`git rev-parse HEAD`" 643 "`git rev-parse HEAD`"
643 644
645# Location of a checkout of <git://git.savannah.gnu.org/guix/maintenance.git>.
646# Package data from this checkout is used by 'update-NEWS.scm'.
647GUIX_MAINTENANCE_DIRECTORY ?= $(top_srcdir)/../guix-maintenance
648
649update-NEWS: $(GOBJECTS)
650 $(top_builddir)/pre-inst-env "$(GUILE)" \
651 $(top_srcdir)/build-aux/update-NEWS.scm \
652 $(top_srcdir)/NEWS "$(GUIX_MAINTENANCE_DIRECTORY)/data"
653
644# Make sure we're not shipping a file that embeds a local /gnu/store file name. 654# Make sure we're not shipping a file that embeds a local /gnu/store file name.
645assert-no-store-file-names: $(distdir)/ChangeLog 655assert-no-store-file-names: $(distdir)/ChangeLog
646 $(AM_V_at)if grep -r --exclude=*.texi --exclude=*.info \ 656 $(AM_V_at)if grep -r --exclude=*.texi --exclude=*.info \
@@ -676,7 +686,7 @@ hydra-jobs.scm: $(GOBJECTS)
676.PHONY: assert-no-store-file-names assert-binaries-available 686.PHONY: assert-no-store-file-names assert-binaries-available
677.PHONY: assert-final-inputs-self-contained 687.PHONY: assert-final-inputs-self-contained
678.PHONY: clean-go make-go 688.PHONY: clean-go make-go
679.PHONY: update-guix-package release 689.PHONY: update-guix-package update-NEWS release
680 690
681## -------------- ## 691## -------------- ##
682## Silent rules. ## 692## Silent rules. ##