diff options
author | Holger Weiss <holger@zedat.fu-berlin.de> | 2013-09-28 00:58:02 +0200 |
---|---|---|
committer | Holger Weiss <holger@zedat.fu-berlin.de> | 2013-09-28 00:58:02 +0200 |
commit | 4ad0f80ec3a136d1c45ee7a9957a8acdef6d4afc (patch) | |
tree | 4e57aa36762fe168b57e32bffb6115f8cdb57eb2 /Makefile.am | |
parent | 9ae1cd8f91aa6b53404e66588679d852d3972bcd (diff) | |
download | monitoring-plugins-4ad0f80ec3a136d1c45ee7a9957a8acdef6d4afc.tar.gz |
Add tools/generate-change-log
Add the tools/generate-change-log script for auto-generating the
ChangeLog file from the Git history when running "make dist".
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/Makefile.am b/Makefile.am index dc166546..98542b94 100644 --- a/Makefile.am +++ b/Makefile.am @@ -3,7 +3,7 @@ SUBDIRS = gl tap lib plugins plugins-scripts plugins-root po @PERLMODS_DIR@ EXTRA_DIST = config.rpath \ - ABOUT-NLS ACKNOWLEDGEMENTS AUTHORS CODING FAQ LEGAL NEWS \ + ABOUT-NLS ACKNOWLEDGEMENTS AUTHORS CODING ChangeLog FAQ LEGAL NEWS \ NP-VERSION-GEN REQUIREMENTS SUPPORT THANKS \ NPTest.pm pkg nagios-plugins.spec \ config_test/Makefile config_test/run_tests config_test/child_test.c \ @@ -15,6 +15,13 @@ ACLOCAL_AMFLAGS = -I gl/m4 -I m4 localedir = $(datadir)/locale DEFS = -DLOCALEDIR=\"$(localedir)\" +# +# The ChangeLog file is auto-generated from the Git history. We let it depend +# on NP-VERSION-GEN, as we bump our version number in that file. +# +ChangeLog: NP-VERSION-GEN + $(top_srcdir)/tools/generate-change-log > $@ + dist-hook: $(MAKE) THANKS echo ${VERSION} >$(distdir)/release |