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 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104
|
# Makefile in documentation directory
#
# This file is part of DRBD by Philipp Reisner and Lars Ellenberg.
#
# drbd 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 2, or (at your option)
# any later version.
#
# drbd 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 drbd; see the file COPYING. If not, write to
# the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
#
#
C_LANG=$(shell basename `pwd`)
MANPAGES=drbd.conf.5 drbdsetup.8 drbd.8
#
# Docbook Magic for SuSE, Worksforme...
# Needs to be explicitly enabled with make doc DIST=SuSE-9.0
# requires these packages and their dependencies:
# docbook-dsssl-stylesheets docbook-toys
# docbook-utils docbook-utils opensp perl-SGMLS
#
ifeq ($(DIST),SuSE-9.0)
# dockbook2man just does not work.
# this does:
DB2MAN :=\
@_db2man() { in=$$1 ;\
echo " [DB2MAN] $$in" ;\
nsgmls "$$in" |\
sgmlspl /usr/share/sgml/docbook/utils-0.6.6/helpers/docbook2man-spec.pl;\
}; _db2man
# dockbook2html produces errors and swallows tables.
# db2html works, but in contrast do dockbook2man creates
# a subdirectory and some extra files ...
# this works for me:
DB2HTML :=\
_db2html() { in=$$1; base=$${in%.sgml} ;\
echo " [DB2HTML] $$in" ;\
db2html "$$in" ;\
ln -sf t1.html $$base/index.html ;\
}; _db2html
else
DB2MAN := $(shell which 2>/dev/null docbook2man)
DB2HTML := $(shell which 2>/dev/null docbook2html)
DB2PDF := $(shell which 2>/dev/null docbook2pdf)
DB2PS := $(shell which 2>/dev/null docbook2ps)
endif
####### Implicit rules
.SUFFIXES: .sgml .5 .8 .html .pdf .ps
.sgml.5:
$(DB2MAN) $<
.sgml.8:
$(DB2MAN) $<
.sgml.html:
$(DB2HTML) $<
mv index.html $@
.sgml.pdf:
$(DB2PDF) $<
.sgml.ps:
$(DB2PS) $<
gzip -c $@ > $@.gz
#######
man: $(MANPAGES)
all: man
clean:
rm -f *.[58] manpage.links manpage.refs *~ manpage.log
rm -f *.ps.gz *.pdf *.ps *.html
install:
install -D -m 644 drbdsetup.8 $(PREFIX)/usr/share/man/$(C_LANG)/man8/drbdsetup.8
install -D -m 644 drbd.conf.5 $(PREFIX)/usr/share/man/$(C_LANG)/man5/drbd.conf.5
install -D -m 644 drbd.8 $(PREFIX)/usr/share/man/$(C_LANG)/man8/drbd.8
uninstall:
rm $(PREFIX)/usr/share/man/$(C_LANG)/man8/drbdsetup.8
rm $(PREFIX)/usr/share/man/$(C_LANG)/man5/drbd.conf.5
rm $(PREFIX)/usr/share/man/$(C_LANG)/man8/drbd.8
html: $(shell ls *.sgml | sed s/sgml/html/g)
pdf: $(shell ls *.sgml | sed s/sgml/pdf/g)
ps: $(shell ls *.sgml | sed s/sgml/ps/g)
|