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