1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48
|
# Copyright © 2011, 2012, 2014, 2015 Richard Kettlewell.
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
man_MANS=rsbackup.1 rsbackup.cron.1 rsbackup-mount.1 rsbackup-snapshot-hook.1 \
rsbackup.5 rsbackup-graph.1
EXTRA_DIST=$(man_MANS) rsbackup-debian.html disk-encryption.html \
rsbackup-docs.html \
rsbackup-manual.in.html rsbackup.css CHANGES.md testing.md \
CHANGES.prefix.html README.prefix.html \
partial-transfer.md
MANHTML=rsbackup.1.html rsbackup.cron.1.html rsbackup-mount.1.html rsbackup-snapshot-hook.1.html rsbackup.5.html rsbackup-graph.1.html
all: rsbackup-manual.html
html: $(MANHTML) CHANGES.html README.html
rsbackup-manual.html: rsbackup-manual.in.html Makefile
rm -f $@.new
sed 's/_version_/${VERSION}/g' < ${srcdir}/rsbackup-manual.in.html > $@.new
chmod 644 $@.new
mv -f $@.new $@
%.html: %
$(top_srcdir)/scripts/htmlman $^
CHANGES.html: CHANGES.md
exec > $@ && cat CHANGES.prefix.html && markdown --html4tags $^
README.html: ../README.md
exec > $@ && cat README.prefix.html && markdown --html4tags $^
clean-local:
rm -f *.new CHANGES.html README.html
distclean-local:
rm -f rsbackup-manual.html
rm -f $(MANHTML)
|