1## Makefile for OpenLDAP Administrator's Guide
2# OpenLDAP: pkg/openldap-guide/admin/Makefile,v 1.5.2.12 2010/04/13 20:22:32 kurt Exp
3## This work is part of OpenLDAP Software <http://www.openldap.org/>.
4##
5## Copyright 2005-2010 The OpenLDAP Foundation.
6## All rights reserved.
7##
8## Redistribution and use in source and binary forms, with or without
9## modification, are permitted only as authorized by the OpenLDAP
10## Public License.
11##
12## A copy of this license is available in the file LICENSE in the
13## top-level directory of the distribution or, alternatively, at
14## <http://www.OpenLDAP.org/license.html>.
15all: guide.html index.html
16
17# for website building (for webmaster use, don't change)
18www: guide.html index.html OpenLDAP-Admin-Guide.pdf
19
20sdf-src: \
21	../plain.sdf \
22	../preamble.sdf \
23	abstract.sdf \
24	access-control.sdf \
25	appendix-changes.sdf \
26	appendix-common-errors.sdf \
27	appendix-configs.sdf \
28	appendix-contrib.sdf \
29	appendix-deployments.sdf \
30	appendix-ldap-result-codes.sdf \
31	appendix-recommended-versions.sdf \
32	appendix-upgrading.sdf \
33	backends.sdf \
34	config.sdf \
35	dbtools.sdf \
36	glossary.sdf \
37	guide.sdf \
38	install.sdf \
39	intro.sdf \
40	maintenance.sdf \
41	master.sdf \
42	monitoringslapd.sdf \
43	overlays.sdf \
44	preface.sdf \
45	quickstart.sdf \
46	referrals.sdf \
47	replication.sdf \
48	runningslapd.sdf \
49	sasl.sdf \
50	schema.sdf \
51	security.sdf \
52	slapdconfig.sdf \
53	title.sdf \
54	tls.sdf \
55	troubleshooting.sdf \
56	tuning.sdf
57
58sdf-img: \
59	../images/LDAPlogo.gif \
60	allmail-en.png \
61	allusersgroup-en.png \
62	config_dit.png \
63	config_local.png \
64	config_ref.png \
65	config_repl.png \
66	dual_dc.png \
67	intro_dctree.png \
68	intro_tree.png \
69	push-based-complete.png \
70	push-based-standalone.png \
71	refint.png \
72	set-following-references.png \
73	set-memberUid.png \
74	set-recursivegroup.png
75
76guide.html: guide.sdf sdf-src sdf-img
77	sdf -2html guide.sdf
78
79index.html: index.sdf sdf-src sdf-img
80	sdf -2topics index.sdf
81
82admin.html: admin.sdf sdf-src sdf-img
83	sdf -DPDF -2html admin.sdf
84
85guide.pdf: admin.html guide.book
86	htmldoc --batch guide.book -f guide.pdf
87
88OpenLDAP-Admin-Guide.pdf: admin.html guide.book
89	htmldoc --batch guide.book -f OpenLDAP-Admin-Guide.pdf
90
91clean:
92	rm -f *.pdf *.html *~ *.bak
93