summaryrefslogtreecommitdiff
path: root/source4/lib/ldb/Makefile.in
diff options
context:
space:
mode:
authorStefan Metzmacher <metze@samba.org>2006-01-11 16:31:57 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 13:50:53 -0500
commit4a8656fd65b4bd9a02bf15a0fc46b1e4de35e905 (patch)
tree21dd8b5f7a227e0248c980de8f5550d04d4855d7 /source4/lib/ldb/Makefile.in
parentc07d16d2010873be96e13e5747b48bbc17459109 (diff)
downloadsamba-4a8656fd65b4bd9a02bf15a0fc46b1e4de35e905.tar.gz
samba-4a8656fd65b4bd9a02bf15a0fc46b1e4de35e905.tar.bz2
samba-4a8656fd65b4bd9a02bf15a0fc46b1e4de35e905.zip
r12850: - add Doxygen comments to ldb
- 'make doxygen' generated the api documentation under apidocs/ Many thanks to Brad Hards <bradh@frogmouth.net> for the patches! metze (This used to be commit e98d483174c555366e62dd27600e6b242cab7a7f)
Diffstat (limited to 'source4/lib/ldb/Makefile.in')
-rw-r--r--source4/lib/ldb/Makefile.in7
1 files changed, 6 insertions, 1 deletions
diff --git a/source4/lib/ldb/Makefile.in b/source4/lib/ldb/Makefile.in
index 039e9a657f..cca9f3feb8 100644
--- a/source4/lib/ldb/Makefile.in
+++ b/source4/lib/ldb/Makefile.in
@@ -1,6 +1,7 @@
CC = @CC@
GCOV = @GCOV@
XSLTPROC = @XSLTPROC@
+DOXYGEN = @DOXYGEN@
prefix = @prefix@
exec_prefix = @exec_prefix@
includedir = @includedir@
@@ -76,7 +77,7 @@ MANPAGES = $(patsubst %.xml,%,$(wildcard man/*.xml))
EXAMPLES = examples/ldbreader examples/ldifreader
-all: $(DIRS) $(BINS) $(LIBS) $(EXAMPLES) $(MANPAGES)
+all: $(DIRS) $(BINS) $(LIBS) $(EXAMPLES) $(MANPAGES) doxygen
.c.o:
@echo Compiling $*.c
@@ -131,11 +132,15 @@ examples/ldifreader: examples/ldifreader.o $(LIBS)
%.html: %.xml
test -z "$(XSLTPROC)" || $(XSLTPROC) -o $@ http://docbook.sourceforge.net/release/xsl/current/html/docbook.xsl $<
+doxygen:
+ test -z "$(DOXYGEN)" || $(DOXYGEN)
+
clean:
rm -f */*.o *.gcov */*.gc?? tdbtest.ldb* \
rm -f $(BINS) $(TDB_OBJ) $(TALLOC_OBJ) $(LDB_LIB)
rm -f $(MANPAGES)
rm -f $(EXAMPLES)
+ rm -rf apidocs/
distclean: clean
rm -f *~ */*~