mirror of
https://github.com/samba-team/samba.git
synced 2024-12-23 17:34:34 +03:00
7f56384a8d
Signed-off-by: martijn van brummelen <martijn@brumit.nl> Reviewed-by: Martin Schwenke <martin@meltin.net> Reviewed-by: Amitay Isaacs <amitay@gmail.com>
23 lines
608 B
Makefile
23 lines
608 B
Makefile
DOCS = ctdb.1 ctdb.1.html \
|
|
ctdb_diagnostics.1 ctdb_diagnostics.1.html \
|
|
ctdbd.1 ctdbd.1.html \
|
|
ctdbd_wrapper.1 ctdbd_wrapper.1.html \
|
|
onnode.1 onnode.1.html \
|
|
ltdbtool.1 ltdbtool.1.html \
|
|
ping_pong.1 ping_pong.1.html \
|
|
ctdbd.conf.5 ctdbd.conf.5.html \
|
|
ctdb.7 ctdb.7.html \
|
|
ctdb-statistics.7 ctdb-statistics.7.html \
|
|
ctdb-tunables.7 ctdb-tunables.7.html
|
|
|
|
all: $(DOCS)
|
|
|
|
%: %.xml
|
|
xsltproc -o $@ http://docbook.sourceforge.net/release/xsl/current/manpages/docbook.xsl $<
|
|
|
|
%.html: %.xml
|
|
xsltproc -o $@ http://docbook.sourceforge.net/release/xsl/current/html/docbook.xsl $<
|
|
|
|
distclean:
|
|
rm -f $(DOCS)
|