blob: c6e67d7b3d45c4599e4eb20abd7a64f10963fdce (
plain)
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
|
## Makefile for OpenLDAP Administrator's Guide
# $OpenLDAP$
## This work is part of OpenLDAP Software <http://www.openldap.org/>.
##
## Copyright 2005-2024 The OpenLDAP Foundation.
## All rights reserved.
##
## Redistribution and use in source and binary forms, with or without
## modification, are permitted only as authorized by the OpenLDAP
## Public License.
##
## A copy of this license is available in the file LICENSE in the
## top-level directory of the distribution or, alternatively, at
## <http://www.OpenLDAP.org/license.html>.
all: guide.html index.html
# for website building (for webmaster use, don't change)
www: guide.html booktitle.html index.html OpenLDAP-Admin-Guide.pdf
sdf-src: \
../plain.sdf \
../preamble.sdf \
abstract.sdf \
access-control.sdf \
appendix-changes.sdf \
appendix-common-errors.sdf \
appendix-configs.sdf \
appendix-contrib.sdf \
appendix-deployments.sdf \
appendix-ldap-result-codes.sdf \
appendix-recommended-versions.sdf \
appendix-upgrading.sdf \
backends.sdf \
config.sdf \
dbtools.sdf \
glossary.sdf \
guide.sdf \
install.sdf \
intro.sdf \
loadbalancer.sdf \
maintenance.sdf \
master.sdf \
monitoringslapd.sdf \
overlays.sdf \
preface.sdf \
quickstart.sdf \
referrals.sdf \
replication.sdf \
runningslapd.sdf \
sasl.sdf \
schema.sdf \
security.sdf \
slapdconfig.sdf \
title.sdf \
tls.sdf \
troubleshooting.sdf \
tuning.sdf
sdf-img: \
../images/LDAPlogo.gif \
allmail-en.png \
allusersgroup-en.png \
config_dit.png \
config_local.png \
config_ref.png \
config_repl.png \
delta-syncrepl.png \
dual_dc.png \
intro_dctree.png \
intro_tree.png \
ldap-sync-refreshandpersist.png \
ldap-sync-refreshonly.png \
load-balancer-scenario.png \
n-way-multi-provider.png \
push-based-complete.png \
push-based-standalone.png \
refint.png \
set-following-references.png \
set-memberUid.png \
set-recursivegroup.png
guide.html: guide.sdf sdf-src sdf-img
sdf -2html guide.sdf
index.html: index.sdf sdf-src sdf-img
sdf -2topics index.sdf
admin.html: admin.sdf sdf-src sdf-img
sdf -DPDF -2html admin.sdf
booktitle.html: booktitle.sdf
sdf -2html booktitle.sdf
guide.pdf: admin.html booktitle.html guide.book
htmldoc --batch guide.book -f guide.pdf
OpenLDAP-Admin-Guide.pdf: admin.html guide.book
htmldoc --batch guide.book -f OpenLDAP-Admin-Guide.pdf
clean:
rm -f *.pdf *.html *~ *.bak
|