Merge from LDAPJavaSDK_40beta_19990802_BRANCH. Some files removed. Some added

git-svn-id: svn://10.0.0.236/trunk@42079 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
chuckb%netscape.com
1999-08-04 02:03:56 +00:00
parent 8ba8587f94
commit 5f02d091e9
149 changed files with 10783 additions and 4663 deletions

View File

@@ -12,7 +12,7 @@
#
# The Initial Developer of this code under the NPL is Netscape
# Communications Corporation. Portions created by Netscape are
# Copyright (C) 1998 Netscape Communications Corporation. All Rights
# Copyright (C) 1999 Netscape Communications Corporation. All Rights
# Reserved.
#
# Makefile for the LDAP classes
@@ -60,7 +60,7 @@ SRCDIR=com/netscape/jndi/ldap
DISTDIR=$(MCOM_ROOT)/dist
CLASSDIR=$(MCOM_ROOT)/dist/classes
CLASSPACKAGEDIR=$(DISTDIR)/packages
#PACKAGENAME=jndi.zip
DOCDIR=$(DISTDIR)/doc/ldapsp
ifeq ($(DEBUG), full)
BASEPACKAGENAME=ldapsp_debug.jar
else
@@ -69,6 +69,9 @@ endif
CLASSPACKAGE=$(CLASSPACKAGEDIR)/$(PACKAGENAME)
MANIFEST=$(BASEDIR)/ldapsp/manifest.mf
ifndef JAVADOC
JAVADOC=javadoc -classpath "$(JAVACLASSPATH)"
endif
ifndef JAVAC
ifdef JAVA_HOME
JDKBIN=$(JDK)/bin/
@@ -80,8 +83,12 @@ ifndef JAVAC
endif
endif
DOCCLASSES=com.netscape.jndi.ldap.controls
all: classes
doc: $(DISTDIR) $(DOCDIR) DOCS
basics: $(DISTDIR) $(CLASSDIR)
classes: JNDICLASSES
@@ -101,18 +108,22 @@ COMMON: basics
CONTROLS: basics
cd ldapsp/$(SRCDIR)/controls; $(JAVAC) -d $(CLASS_DEST) *.java
JNDICLASSES: COMMON CONTROLS SCHEMA MAIN
DOCS:
$(JAVADOC) -d $(DOCDIR) $(DOCCLASSES)
clean:
rm -rf $(DISTDIR)/classes/com/netscape/jndi/ldap
$(CLASSPACKAGEDIR):
mkdir -p $@
$(DOCDIR):
mkdir -p $@
$(DISTDIR):
mkdir -p $@
$(CLASSDIR):
mkdir -p $@
mkdir -p $@