diff options
author | Simo Sorce <idra@samba.org> | 2005-08-21 14:26:03 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 13:34:16 -0500 |
commit | 5c16371daa9d496fe109ea30bd6cfa3fd863a219 (patch) | |
tree | 35e8a1a60439039023384fd5f769e5f4ce7c0504 /source4/lib/ldb/Makefile.in | |
parent | f975eb06f0ddd13fe20dd336bb134e6d32be9067 (diff) | |
download | samba-5c16371daa9d496fe109ea30bd6cfa3fd863a219.tar.gz samba-5c16371daa9d496fe109ea30bd6cfa3fd863a219.tar.bz2 samba-5c16371daa9d496fe109ea30bd6cfa3fd863a219.zip |
r9447: Add a new tool to convert openLdap schema files into an ldif
My first test with nis.schema seem to confirm it works properly
Use a command line like:
oLschema2ldif -I tests/schema/nis.schema -O nis_schema.ldif -b "dc=sambadom,dc=samba,dc=org"
to see how it works.
SSS
(This used to be commit fc373fd4631420c9d8d4087a2c698b08e18372d7)
Diffstat (limited to 'source4/lib/ldb/Makefile.in')
-rw-r--r-- | source4/lib/ldb/Makefile.in | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/source4/lib/ldb/Makefile.in b/source4/lib/ldb/Makefile.in index bbd2602ef7..0b7c8c2c14 100644 --- a/source4/lib/ldb/Makefile.in +++ b/source4/lib/ldb/Makefile.in @@ -61,7 +61,7 @@ OBJS = $(MODULES_OBJ) $(COMMON_OBJ) $(LDB_TDB_OBJ) $(TDB_OBJ) $(TALLOC_OBJ) $(L LDB_LIB = lib/libldb.a -BINS = bin/ldbadd bin/ldbsearch bin/ldbdel bin/ldbmodify bin/ldbedit bin/ldbrename bin/ldbtest +BINS = bin/ldbadd bin/ldbsearch bin/ldbdel bin/ldbmodify bin/ldbedit bin/ldbrename bin/ldbtest bin/oLschema2ldif LIBS = $(LDB_LIB)($(OBJS)) @@ -102,6 +102,9 @@ bin/ldbrename: tools/ldbrename.o tools/cmdline.o $(LIBS) bin/ldbtest: tools/ldbtest.o tools/cmdline.o $(LIBS) $(CC) -o bin/ldbtest tools/ldbtest.o tools/cmdline.o $(LIB_FLAGS) +bin/oLschema2ldif: tools/oLschema2ldif.o tools/cmdline.o $(LIBS) + $(CC) -o bin/oLschema2ldif tools/oLschema2ldif.o tools/cmdline.o $(LIB_FLAGS) + .SUFFIXES: .1 .2 .3 .yo %.3: %.3.xml |