diff options
author | Mathieu Lirzin <mthl@openmailbox.org> | 2015-06-26 23:17:01 +0200 |
---|---|---|
committer | Dale Mellor <dale@rdmp.org> | 2015-07-04 07:00:52 +0100 |
commit | e6a94adeb3384cb883f49ec5a4cc589df6b40d10 (patch) | |
tree | cd5f1da67dbfe37e918f1393be94e1eb1e56c195 /makefile.am | |
parent | 2039060a1de3cca3aa3e9a1035ce08b430ff5ea6 (diff) | |
download | mcron-e6a94adeb3384cb883f49ec5a4cc589df6b40d10.tar.gz mcron-e6a94adeb3384cb883f49ec5a4cc589df6b40d10.tar.bz2 mcron-e6a94adeb3384cb883f49ec5a4cc589df6b40d10.zip |
Fix build of the manual.
Diffstat (limited to 'makefile.am')
-rw-r--r-- | makefile.am | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/makefile.am b/makefile.am index 633cf2f..2229893 100644 --- a/makefile.am +++ b/makefile.am @@ -1,5 +1,6 @@ ## Makefile for the toplevel directory of mcron. ## Copyright (C) 2003 Dale Mellor +## Copyright (C) 2015 Mathieu Lirzin ## # This file is part of GNU mcron. # @@ -31,9 +32,9 @@ CLEANFILES = mcron.c EXTRA_DIST = makefile.ed mcron.c.template BUGS -info_TEXINFOS = mcron.texinfo +info_TEXINFOS = doc/mcron.texi -dist_man_MANS = mcron.1 +dist_man_MANS = doc/mcron.1 bin_PROGRAMS = mcron mcron_SOURCES = mcron.c @@ -79,6 +80,6 @@ uninstall-hook: # Not part of formal package building, but a rule for manual use to get the # elemental man page. Will only work once the mcron program is installed. -mcron.1 : mcron.c +$(dist_man_MANS): mcron.c $(HELP2MAN) -n 'a program to run tasks at regular (or not) intervals' \ - ./mcron > mcron.1 + ./mcron > $@ |