mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-01-27 07:34:20 +00:00
REORG of source tree. Hierarchy is much cleaner now. Makefiles will likely be broken until next checkin. You've been warned.
This commit is contained in:
parent
0bcdbebb9b
commit
ba987d314d
@ -1,65 +0,0 @@
|
||||
#!gmake
|
||||
#
|
||||
# The contents of this file are subject to the Mozilla Public
|
||||
# License Version 1.1 (the "License"); you may not use this file
|
||||
# except in compliance with the License. You may obtain a copy of
|
||||
# the License at http://www.mozilla.org/MPL/
|
||||
#
|
||||
# Software distributed under the License is distributed on an "AS
|
||||
# IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
|
||||
# implied. See the License for the specific language governing
|
||||
# rights and limitations under the License.
|
||||
#
|
||||
# The Original Code is the Grendel mail/news client.
|
||||
#
|
||||
# The Initial Developer of the Original Code is Netscape Communications
|
||||
# Corporation. Portions created by Netscape are
|
||||
# Copyright (C) 1997 Netscape Communications Corporation. All
|
||||
# Rights Reserved.
|
||||
#
|
||||
# Contributor(s): Jeff Galyan <talisman@anamorphic.com>
|
||||
# Giao Nguyen <grail@cafebabe.org>
|
||||
|
||||
|
||||
SUBDIRS= \
|
||||
addresscard \
|
||||
$(NULL)
|
||||
|
||||
SRCS= \
|
||||
AddressBook.java \
|
||||
NewCardDialog.java \
|
||||
SearchDirectoryDialog.java \
|
||||
$(NULL)
|
||||
|
||||
TOPDIR = @top_srcdir@
|
||||
|
||||
CLASSPATH_NEW = ${CLASSPATH}:$(TOPDIR)/..:$(TOPDIR)
|
||||
|
||||
JAVAC = @java_compiler@
|
||||
|
||||
JAVA = @java_run@
|
||||
|
||||
RM = rm -f
|
||||
|
||||
OBJS = $(subst .java,.class,$(SRCS))
|
||||
|
||||
.SUFFIXES: .java .class
|
||||
|
||||
.java.class:
|
||||
$(JAVAC) -classpath $(CLASSPATH_NEW) -J-mx64m -g $*.java
|
||||
|
||||
all:: $(OBJS)
|
||||
|
||||
clean::
|
||||
$(RM) *.class
|
||||
|
||||
distclean::
|
||||
$(RM) *.class *~ core Makefile
|
||||
|
||||
all clean distclean::
|
||||
@sd="$(SUBDIRS)" ; \
|
||||
for dir in $$sd; do \
|
||||
( cd $$dir ; $(MAKE) $@ ); \
|
||||
done
|
||||
|
||||
|
@ -1,80 +0,0 @@
|
||||
#!gmake
|
||||
#
|
||||
# The contents of this file are subject to the Mozilla Public
|
||||
# License Version 1.1 (the "License"); you may not use this file
|
||||
# except in compliance with the License. You may obtain a copy of
|
||||
# the License at http://www.mozilla.org/MPL/
|
||||
#
|
||||
# Software distributed under the License is distributed on an "AS
|
||||
# IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
|
||||
# implied. See the License for the specific language governing
|
||||
# rights and limitations under the License.
|
||||
#
|
||||
# The Original Code is the Grendel mail/news client.
|
||||
#
|
||||
# The Initial Developer of the Original Code is Netscape Communications
|
||||
# Corporation. Portions created by Netscape are
|
||||
# Copyright (C) 1997 Netscape Communications Corporation. All
|
||||
# Rights Reserved.
|
||||
#
|
||||
# Contributor(s):
|
||||
|
||||
|
||||
SRCS= \
|
||||
ACS_Personal.java \
|
||||
AC_Attribute.java \
|
||||
AC_Exception.java \
|
||||
AC_ID.java \
|
||||
AC_IDSet.java \
|
||||
IAttribute.java \
|
||||
IAttributeSet.java \
|
||||
ICard.java \
|
||||
ICardSet.java \
|
||||
ICardSource.java \
|
||||
IQuerySet.java \
|
||||
IQueryString.java \
|
||||
ITerm.java \
|
||||
LDAP_Attribute.java \
|
||||
LDAP_AttributeSet.java \
|
||||
LDAP_Card.java \
|
||||
LDAP_CardSet.java \
|
||||
LDAP_Server.java \
|
||||
SelfTest.java \
|
||||
TermAnd.java \
|
||||
TermEqual.java \
|
||||
TermNotEqual.java \
|
||||
TermOr.java \
|
||||
$(NULL)
|
||||
|
||||
TOPDIR = @top_srcdir@
|
||||
|
||||
CLASSPATH_NEW = ${CLASSPATH}:$(TOPDIR)/..:$(TOPDIR)
|
||||
|
||||
JAVAC = @java_compiler@
|
||||
|
||||
JAVA = @java_run@
|
||||
|
||||
RM = rm -f
|
||||
|
||||
OBJS = $(subst .java,.class,$(SRCS))
|
||||
|
||||
.SUFFIXES: .java .class
|
||||
|
||||
.java.class:
|
||||
$(JAVAC) -classpath $(CLASSPATH_NEW) -J-mx64m -g $*.java
|
||||
|
||||
all:: $(OBJS)
|
||||
|
||||
clean::
|
||||
$(RM) *.class
|
||||
|
||||
distclean::
|
||||
$(RM) *.class *~ core Makefile
|
||||
|
||||
all clean distclean::
|
||||
@sd="$(SUBDIRS)" ; \
|
||||
for dir in $$sd; do \
|
||||
( cd $$dir ; $(MAKE) $@ ); \
|
||||
done
|
||||
|
||||
|
@ -1,57 +0,0 @@
|
||||
#!gmake
|
||||
#
|
||||
# The contents of this file are subject to the Mozilla Public
|
||||
# License Version 1.1 (the "License"); you may not use this file
|
||||
# except in compliance with the License. You may obtain a copy of
|
||||
# the License at http://www.mozilla.org/MPL/
|
||||
#
|
||||
# Software distributed under the License is distributed on an "AS
|
||||
# IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
|
||||
# implied. See the License for the specific language governing
|
||||
# rights and limitations under the License.
|
||||
#
|
||||
# The Original Code is the Grendel mail/news client.
|
||||
#
|
||||
# The Initial Developer of the Original Code is Netscape Communications
|
||||
# Corporation. Portions created by Netscape are
|
||||
# Copyright (C) 1997 Netscape Communications Corporation. All
|
||||
# Rights Reserved.
|
||||
#
|
||||
# Contributor(s):
|
||||
|
||||
SUBDIRS= \
|
||||
util \
|
||||
$(NULL)
|
||||
|
||||
TOPDIR = @top_srcdir@
|
||||
|
||||
CLASSPATH_NEW = ${CLASSPATH}:$(TOPDIR)/..:$(TOPDIR)
|
||||
|
||||
JAVAC = @java_compiler@
|
||||
|
||||
JAVA = @java_run@
|
||||
|
||||
RM = rm -f
|
||||
|
||||
OBJS = $(subst .java,.class,$(SRCS))
|
||||
|
||||
.SUFFIXES: .java .class
|
||||
|
||||
.java.class:
|
||||
$(JAVAC) -classpath $(CLASSPATH_NEW) -J-mx64m -g $*.java
|
||||
|
||||
all:: $(OBJS)
|
||||
|
||||
clean::
|
||||
$(RM) *.class
|
||||
|
||||
distclean::
|
||||
$(RM) *.class *~ core Makefile
|
||||
|
||||
all clean distclean::
|
||||
@sd="$(SUBDIRS)" ; \
|
||||
for dir in $$sd; do \
|
||||
( cd $$dir ; $(MAKE) $@ ); \
|
||||
done
|
||||
|
||||
|
@ -1,117 +0,0 @@
|
||||
#!gmake
|
||||
#
|
||||
# The contents of this file are subject to the Mozilla Public
|
||||
# License Version 1.1 (the "License"); you may not use this file
|
||||
# except in compliance with the License. You may obtain a copy of
|
||||
# the License at http://www.mozilla.org/MPL/
|
||||
#
|
||||
# Software distributed under the License is distributed on an "AS
|
||||
# IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
|
||||
# implied. See the License for the specific language governing
|
||||
# rights and limitations under the License.
|
||||
#
|
||||
# The Original Code is the Grendel mail/news client.
|
||||
#
|
||||
# The Initial Developer of the Original Code is Netscape Communications
|
||||
# Corporation. Portions created by Netscape are
|
||||
# Copyright (C) 1997 Netscape Communications Corporation. All
|
||||
# Rights Reserved.
|
||||
#
|
||||
# Contributor(s):
|
||||
|
||||
SRCS= \
|
||||
Abacus.java \
|
||||
ArrayEnumeration.java \
|
||||
Assert.java \
|
||||
AssertionError.java \
|
||||
AssertionException.java \
|
||||
Atom.java \
|
||||
AtomHashtable.java \
|
||||
AttributeValuePair.java \
|
||||
ByteBuf.java \
|
||||
ByteLineBuffer.java \
|
||||
ByteToCharConverterEnumeration.java \
|
||||
CacheOutputStream.java \
|
||||
CharArray.java \
|
||||
CharArrayIterator.java \
|
||||
CharToByteConverterEnumeration.java \
|
||||
ClasspathEntryEnumeration.java \
|
||||
Comparer.java \
|
||||
ConfigUtils.java \
|
||||
Counter.java \
|
||||
DataExtension.java \
|
||||
DefaultPreferences.java \
|
||||
EnumerationEnumerator.java \
|
||||
HashtableBase.java \
|
||||
HashtableLite.java \
|
||||
HashtableRecycler.java \
|
||||
IDMap.java \
|
||||
LineBufferingInputStream.java \
|
||||
ListenerList.java \
|
||||
ListenerListState.java \
|
||||
MemoryManager.java \
|
||||
MemoryMonitor.java \
|
||||
MemoryPressure.java \
|
||||
NetworkDate.java \
|
||||
NullEnumeration.java \
|
||||
NullJavaEnumeration.java \
|
||||
Preferences.java \
|
||||
PreferencesBase.java \
|
||||
PreferencesFactory.java \
|
||||
PrefetchEnumeration.java \
|
||||
QSort.java \
|
||||
RWLock.java \
|
||||
RandomAccessFileWithByteLines.java \
|
||||
Recycler.java \
|
||||
SelfTest.java \
|
||||
SelfTestAtom.java \
|
||||
SelfTestException.java \
|
||||
SelfTestIDMap.java \
|
||||
SelfTestRWLock.java \
|
||||
SignedInteger.java \
|
||||
SingleEnumeration.java \
|
||||
StringBuf.java \
|
||||
StringBufRecycler.java \
|
||||
StringUtils.java \
|
||||
TempFile.java \
|
||||
TimeBomb.java \
|
||||
URLClassLoader.java \
|
||||
Vec.java \
|
||||
VectorRecycler.java \
|
||||
WeakLink.java \
|
||||
WeakLinkArray.java \
|
||||
WeakLinkArrayEnumeration.java \
|
||||
$(NULL)
|
||||
|
||||
TOPDIR = @top_srcdir@
|
||||
|
||||
CLASSPATH_NEW = ${CLASSPATH}:$(TOPDIR)/..:$(TOPDIR)
|
||||
|
||||
JAVAC = @java_compiler@
|
||||
|
||||
JAVA = @java_run@
|
||||
|
||||
RM = rm -f
|
||||
|
||||
OBJS = $(subst .java,.class,$(SRCS))
|
||||
|
||||
.SUFFIXES: .java .class
|
||||
|
||||
.java.class:
|
||||
$(JAVAC) -classpath $(CLASSPATH_NEW) -J-mx64m -g $*.java
|
||||
|
||||
all:: $(OBJS)
|
||||
|
||||
clean::
|
||||
$(RM) *.class
|
||||
|
||||
distclean::
|
||||
$(RM) *.class *~ core Makefile
|
||||
|
||||
all clean distclean::
|
||||
@sd="$(SUBDIRS)" ; \
|
||||
for dir in $$sd; do \
|
||||
( cd $$dir ; $(MAKE) $@ ); \
|
||||
done
|
||||
|
||||
|
@ -1,70 +0,0 @@
|
||||
#!gmake
|
||||
#
|
||||
# The contents of this file are subject to the Mozilla Public
|
||||
# License Version 1.1 (the "License"); you may not use this file
|
||||
# except in compliance with the License. You may obtain a copy of
|
||||
# the License at http://www.mozilla.org/MPL/
|
||||
#
|
||||
# Software distributed under the License is distributed on an "AS
|
||||
# IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
|
||||
# implied. See the License for the specific language governing
|
||||
# rights and limitations under the License.
|
||||
#
|
||||
# The Original Code is the Grendel mail/news client.
|
||||
#
|
||||
# The Initial Developer of the Original Code is Netscape Communications
|
||||
# Corporation. Portions created by Netscape are
|
||||
# Copyright (C) 1997 Netscape Communications Corporation. All
|
||||
# Rights Reserved.
|
||||
#
|
||||
# Contributor(s): Giao Nguyen <grail@cafebabe.org>
|
||||
|
||||
SRCS= \
|
||||
AddressBar.java \
|
||||
AddressDialog.java \
|
||||
AddressList.java \
|
||||
AddressListBeanInfo.java \
|
||||
Addressee.java \
|
||||
AttachmentsList.java \
|
||||
AttachmentsListBeanInfo.java \
|
||||
Composition.java \
|
||||
CompositionPanel.java \
|
||||
CompositionPanelListener.java \
|
||||
CompositionTest.java \
|
||||
NSTabbedPane.java \
|
||||
OptionsPanel.java \
|
||||
# TestDataSource2.java \
|
||||
$(NULL)
|
||||
|
||||
TOPDIR = @top_srcdir@
|
||||
|
||||
CLASSPATH_NEW = ${CLASSPATH}:$(TOPDIR)/..:$(TOPDIR)
|
||||
|
||||
JAVAC = @java_compiler@
|
||||
|
||||
JAVA = @java_run@
|
||||
|
||||
RM = rm -f
|
||||
|
||||
OBJS = $(subst .java,.class,$(SRCS))
|
||||
|
||||
.SUFFIXES: .java .class
|
||||
|
||||
.java.class:
|
||||
$(JAVAC) -classpath $(CLASSPATH_NEW) -J-mx64m -g $*.java
|
||||
|
||||
all:: $(OBJS)
|
||||
|
||||
clean::
|
||||
$(RM) *.class
|
||||
|
||||
distclean::
|
||||
$(RM) *.class *~ core Makefile
|
||||
|
||||
all clean distclean::
|
||||
@sd="$(SUBDIRS)" ; \
|
||||
for dir in $$sd; do \
|
||||
( cd $$dir ; $(MAKE) $@ ); \
|
||||
done
|
||||
|
||||
|
@ -1,70 +0,0 @@
|
||||
#!gmake
|
||||
#
|
||||
# The contents of this file are subject to the Mozilla Public
|
||||
# License Version 1.1 (the "License"); you may not use this file
|
||||
# except in compliance with the License. You may obtain a copy of
|
||||
# the License at http://www.mozilla.org/MPL/
|
||||
#
|
||||
# Software distributed under the License is distributed on an "AS
|
||||
# IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
|
||||
# implied. See the License for the specific language governing
|
||||
# rights and limitations under the License.
|
||||
#
|
||||
# The Original Code is the Grendel mail/news client.
|
||||
#
|
||||
# The Initial Developer of the Original Code is Netscape Communications
|
||||
# Corporation. Portions created by Netscape are
|
||||
# Copyright (C) 1997 Netscape Communications Corporation. All
|
||||
# Rights Reserved.
|
||||
#
|
||||
# Contributor(s):
|
||||
|
||||
SRCS= \
|
||||
DnDConstants.java \
|
||||
DragSource.java \
|
||||
DragSourceContext.java \
|
||||
DragSourceDragEvent.java \
|
||||
DragSourceDropEvent.java \
|
||||
DragSourceListener.java \
|
||||
DropTarget.java \
|
||||
DropTargetComponent.java \
|
||||
DropTargetContext.java \
|
||||
DropTargetDragEvent.java \
|
||||
DropTargetDropEvent.java \
|
||||
DropTargetEvent.java \
|
||||
DropTargetListener.java \
|
||||
InvalidDnDOperationException.java \
|
||||
$(NULL)
|
||||
|
||||
TOPDIR = @top_srcdir@
|
||||
|
||||
CLASSPATH_NEW = ${CLASSPATH}:$(TOPDIR)/..:$(TOPDIR)
|
||||
|
||||
JAVAC = @java_compiler@
|
||||
|
||||
JAVA = @java_run@
|
||||
|
||||
RM = rm -f
|
||||
|
||||
OBJS = $(subst .java,.class,$(SRCS))
|
||||
|
||||
.SUFFIXES: .java .class
|
||||
|
||||
.java.class:
|
||||
$(JAVAC) -classpath $(CLASSPATH_NEW) -J-mx64m -g $*.java
|
||||
|
||||
all:: $(OBJS)
|
||||
|
||||
clean::
|
||||
$(RM) *.class
|
||||
|
||||
distclean::
|
||||
$(RM) *.class *~ core Makefile
|
||||
|
||||
all clean distclean::
|
||||
@sd="$(SUBDIRS)" ; \
|
||||
for dir in $$sd; do \
|
||||
( cd $$dir ; $(MAKE) $@ ); \
|
||||
done
|
||||
|
||||
|
@ -1,58 +0,0 @@
|
||||
#!gmake
|
||||
#
|
||||
# The contents of this file are subject to the Mozilla Public
|
||||
# License Version 1.1 (the "License"); you may not use this file
|
||||
# except in compliance with the License. You may obtain a copy of
|
||||
# the License at http://www.mozilla.org/MPL/
|
||||
#
|
||||
# Software distributed under the License is distributed on an "AS
|
||||
# IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
|
||||
# implied. See the License for the specific language governing
|
||||
# rights and limitations under the License.
|
||||
#
|
||||
# The Original Code is the Grendel mail/news client.
|
||||
#
|
||||
# The Initial Developer of the Original Code is Edwin Woudt
|
||||
# <edwin@woudt.nl> Portions created by Edwin Woudt are
|
||||
# Copyright (C) 1999 Edwin Woudt. All
|
||||
# Rights Reserved.
|
||||
#
|
||||
# Contributor(s):
|
||||
|
||||
SUBDIRS= \
|
||||
mail \
|
||||
util \
|
||||
$(NULL)
|
||||
|
||||
TOPDIR = @top_srcdir@
|
||||
|
||||
CLASSPATH_NEW = ${CLASSPATH}:$(TOPDIR)/..:$(TOPDIR)
|
||||
|
||||
JAVAC = @java_compiler@
|
||||
|
||||
JAVA = @java_run@
|
||||
|
||||
RM = rm -f
|
||||
|
||||
OBJS = $(subst .java,.class,$(SRCS))
|
||||
|
||||
.SUFFIXES: .java .class
|
||||
|
||||
.java.class:
|
||||
$(JAVAC) -classpath $(CLASSPATH_NEW) -J-mx64m -g $*.java
|
||||
|
||||
all:: $(OBJS)
|
||||
|
||||
clean::
|
||||
$(RM) *.class
|
||||
|
||||
distclean::
|
||||
$(RM) *.class *~ core Makefile
|
||||
|
||||
all clean distclean::
|
||||
@sd="$(SUBDIRS)" ; \
|
||||
for dir in $$sd; do \
|
||||
( cd $$dir ; $(MAKE) $@ ); \
|
||||
done
|
||||
|
||||
|
@ -1,58 +0,0 @@
|
||||
#!gmake
|
||||
#
|
||||
# The contents of this file are subject to the Mozilla Public
|
||||
# License Version 1.1 (the "License"); you may not use this file
|
||||
# except in compliance with the License. You may obtain a copy of
|
||||
# the License at http://www.mozilla.org/MPL/
|
||||
#
|
||||
# Software distributed under the License is distributed on an "AS
|
||||
# IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
|
||||
# implied. See the License for the specific language governing
|
||||
# rights and limitations under the License.
|
||||
#
|
||||
# The Original Code is the Grendel mail/news client.
|
||||
#
|
||||
# The Initial Developer of the Original Code is Edwin Woudt
|
||||
# <edwin@woudt.nl> Portions created by Edwin Woudt are
|
||||
# Copyright (C) 1999 Edwin Woudt. All
|
||||
# Rights Reserved.
|
||||
#
|
||||
# Contributor(s):
|
||||
|
||||
SUBDIRS= \
|
||||
nntp \
|
||||
util \
|
||||
$(NULL)
|
||||
|
||||
TOPDIR = @top_srcdir@
|
||||
|
||||
CLASSPATH_NEW = ${CLASSPATH}:$(TOPDIR)/..:$(TOPDIR)
|
||||
|
||||
JAVAC = @java_compiler@
|
||||
|
||||
JAVA = @java_run@
|
||||
|
||||
RM = rm -f
|
||||
|
||||
OBJS = $(subst .java,.class,$(SRCS))
|
||||
|
||||
.SUFFIXES: .java .class
|
||||
|
||||
.java.class:
|
||||
$(JAVAC) -classpath $(CLASSPATH_NEW) -J-mx64m -g $*.java
|
||||
|
||||
all:: $(OBJS)
|
||||
|
||||
clean::
|
||||
$(RM) *.class
|
||||
|
||||
distclean::
|
||||
$(RM) *.class *~ core Makefile
|
||||
|
||||
all clean distclean::
|
||||
@sd="$(SUBDIRS)" ; \
|
||||
for dir in $$sd; do \
|
||||
( cd $$dir ; $(MAKE) $@ ); \
|
||||
done
|
||||
|
||||
|
@ -1,59 +0,0 @@
|
||||
#!gmake
|
||||
#
|
||||
# The contents of this file are subject to the Mozilla Public
|
||||
# License Version 1.1 (the "License"); you may not use this file
|
||||
# except in compliance with the License. You may obtain a copy of
|
||||
# the License at http://www.mozilla.org/MPL/
|
||||
#
|
||||
# Software distributed under the License is distributed on an "AS
|
||||
# IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
|
||||
# implied. See the License for the specific language governing
|
||||
# rights and limitations under the License.
|
||||
#
|
||||
# The Original Code is the Grendel mail/news client.
|
||||
#
|
||||
# The Initial Developer of the Original Code is Edwin Woudt
|
||||
# <edwin@woudt.nl> Portions created by Edwin Woudt are
|
||||
# Copyright (C) 1999 Edwin Woudt. All
|
||||
# Rights Reserved.
|
||||
#
|
||||
# Contributor(s):
|
||||
|
||||
SRCS= \
|
||||
Article.java \
|
||||
NNTPStore.java \
|
||||
Newsgroup.java \
|
||||
$(NULL)
|
||||
|
||||
TOPDIR = @top_srcdir@
|
||||
|
||||
CLASSPATH_NEW = ${CLASSPATH}:$(TOPDIR)/..:$(TOPDIR)
|
||||
|
||||
JAVAC = @java_compiler@
|
||||
|
||||
JAVA = @java_run@
|
||||
|
||||
RM = rm -f
|
||||
|
||||
OBJS = $(subst .java,.class,$(SRCS))
|
||||
|
||||
.SUFFIXES: .java .class
|
||||
|
||||
.java.class:
|
||||
$(JAVAC) -classpath $(CLASSPATH_NEW) -J-mx64m -g $*.java
|
||||
|
||||
all:: $(OBJS)
|
||||
|
||||
clean::
|
||||
$(RM) *.class
|
||||
|
||||
distclean::
|
||||
$(RM) *.class *~ core Makefile
|
||||
|
||||
all clean distclean::
|
||||
@sd="$(SUBDIRS)" ; \
|
||||
for dir in $$sd; do \
|
||||
( cd $$dir ; $(MAKE) $@ ); \
|
||||
done
|
||||
|
||||
|
@ -1,60 +0,0 @@
|
||||
#!gmake
|
||||
#
|
||||
# The contents of this file are subject to the Mozilla Public
|
||||
# License Version 1.1 (the "License"); you may not use this file
|
||||
# except in compliance with the License. You may obtain a copy of
|
||||
# the License at http://www.mozilla.org/MPL/
|
||||
#
|
||||
# Software distributed under the License is distributed on an "AS
|
||||
# IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
|
||||
# implied. See the License for the specific language governing
|
||||
# rights and limitations under the License.
|
||||
#
|
||||
# The Original Code is the Grendel mail/news client.
|
||||
#
|
||||
# The Initial Developer of the Original Code is Edwin Woudt
|
||||
# <edwin@woudt.nl> Portions created by Edwin Woudt are
|
||||
# Copyright (C) 1999 Edwin Woudt. All
|
||||
# Rights Reserved.
|
||||
#
|
||||
# Contributor(s):
|
||||
|
||||
SRCS= \
|
||||
CRLFInputStream.java \
|
||||
CRLFOutputStream.java \
|
||||
MessageInputStream.java \
|
||||
MessageOutputStream.java \
|
||||
$(NULL)
|
||||
|
||||
TOPDIR = @top_srcdir@
|
||||
|
||||
CLASSPATH_NEW = ${CLASSPATH}:$(TOPDIR)/..:$(TOPDIR)
|
||||
|
||||
JAVAC = @java_compiler@
|
||||
|
||||
JAVA = @java_run@
|
||||
|
||||
RM = rm -f
|
||||
|
||||
OBJS = $(subst .java,.class,$(SRCS))
|
||||
|
||||
.SUFFIXES: .java .class
|
||||
|
||||
.java.class:
|
||||
$(JAVAC) -classpath $(CLASSPATH_NEW) -J-mx64m -g $*.java
|
||||
|
||||
all:: $(OBJS)
|
||||
|
||||
clean::
|
||||
$(RM) *.class
|
||||
|
||||
distclean::
|
||||
$(RM) *.class *~ core Makefile
|
||||
|
||||
all clean distclean::
|
||||
@sd="$(SUBDIRS)" ; \
|
||||
for dir in $$sd; do \
|
||||
( cd $$dir ; $(MAKE) $@ ); \
|
||||
done
|
||||
|
||||
|
@ -1,67 +0,0 @@
|
||||
#!gmake
|
||||
#
|
||||
# The contents of this file are subject to the Mozilla Public
|
||||
# License Version 1.1 (the "License"); you may not use this file
|
||||
# except in compliance with the License. You may obtain a copy of
|
||||
# the License at http://www.mozilla.org/MPL/
|
||||
#
|
||||
# Software distributed under the License is distributed on an "AS
|
||||
# IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
|
||||
# implied. See the License for the specific language governing
|
||||
# rights and limitations under the License.
|
||||
#
|
||||
# The Original Code is the Grendel mail/news client.
|
||||
#
|
||||
# The Initial Developer of the Original Code is Edwin Woudt
|
||||
# <edwin@woudt.nl> Portions created by Edwin Woudt are
|
||||
# Copyright (C) 1999 Edwin Woudt. All
|
||||
# Rights Reserved.
|
||||
#
|
||||
# Contributor(s):
|
||||
|
||||
SRCS= \
|
||||
ObjectCollator.java \
|
||||
Referential.java \
|
||||
StatusEvent.java \
|
||||
StatusListener.java \
|
||||
StatusSource.java \
|
||||
Timer.java \
|
||||
TimerEvent.java \
|
||||
TimerListener.java \
|
||||
Tree.java \
|
||||
TreeCollator.java \
|
||||
TreeEvent.java \
|
||||
$(NULL)
|
||||
|
||||
TOPDIR = @top_srcdir@
|
||||
|
||||
CLASSPATH_NEW = ${CLASSPATH}:$(TOPDIR)/..:$(TOPDIR)
|
||||
|
||||
JAVAC = @java_compiler@
|
||||
|
||||
JAVA = @java_run@
|
||||
|
||||
RM = rm -f
|
||||
|
||||
OBJS = $(subst .java,.class,$(SRCS))
|
||||
|
||||
.SUFFIXES: .java .class
|
||||
|
||||
.java.class:
|
||||
$(JAVAC) -classpath $(CLASSPATH_NEW) -J-mx64m -g $*.java
|
||||
|
||||
all:: $(OBJS)
|
||||
|
||||
clean::
|
||||
$(RM) *.class
|
||||
|
||||
distclean::
|
||||
$(RM) *.class *~ core Makefile
|
||||
|
||||
all clean distclean::
|
||||
@sd="$(SUBDIRS)" ; \
|
||||
for dir in $$sd; do \
|
||||
( cd $$dir ; $(MAKE) $@ ); \
|
||||
done
|
||||
|
||||
|
@ -1,68 +0,0 @@
|
||||
#!gmake
|
||||
#
|
||||
# The contents of this file are subject to the Mozilla Public
|
||||
# License Version 1.1 (the "License"); you may not use this file
|
||||
# except in compliance with the License. You may obtain a copy of
|
||||
# the License at http://www.mozilla.org/MPL/
|
||||
#
|
||||
# Software distributed under the License is distributed on an "AS
|
||||
# IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
|
||||
# implied. See the License for the specific language governing
|
||||
# rights and limitations under the License.
|
||||
#
|
||||
# The Original Code is the Grendel mail/news client.
|
||||
#
|
||||
# The Initial Developer of the Original Code is Netscape Communications
|
||||
# Corporation. Portions created by Netscape are
|
||||
# Copyright (C) 1997 Netscape Communications Corporation. All
|
||||
# Rights Reserved.
|
||||
#
|
||||
# Contributor(s):
|
||||
|
||||
SRCS= \
|
||||
DeleteFilterActionFactory.java \
|
||||
FilterBase.java \
|
||||
FilterFactory.java \
|
||||
FilterMaster.java \
|
||||
FilterRulesParser.java \
|
||||
FilterSyntaxException.java \
|
||||
IFilter.java \
|
||||
IFilterAction.java \
|
||||
IFilterActionFactory.java \
|
||||
IFilterTermFactory.java \
|
||||
MoveFilterActionFactory.java \
|
||||
SubjectTermFactory.java \
|
||||
$(NULL)
|
||||
|
||||
TOPDIR = @top_srcdir@
|
||||
|
||||
CLASSPATH_NEW = ${CLASSPATH}:$(TOPDIR)/..:$(TOPDIR)
|
||||
|
||||
JAVAC = @java_compiler@
|
||||
|
||||
JAVA = @java_run@
|
||||
|
||||
RM = rm -f
|
||||
|
||||
OBJS = $(subst .java,.class,$(SRCS))
|
||||
|
||||
.SUFFIXES: .java .class
|
||||
|
||||
.java.class:
|
||||
$(JAVAC) -classpath $(CLASSPATH_NEW) -J-mx64m -g $*.java
|
||||
|
||||
all:: $(OBJS)
|
||||
|
||||
clean::
|
||||
$(RM) *.class
|
||||
|
||||
distclean::
|
||||
$(RM) *.class *~ core Makefile
|
||||
|
||||
all clean distclean::
|
||||
@sd="$(SUBDIRS)" ; \
|
||||
for dir in $$sd; do \
|
||||
( cd $$dir ; $(MAKE) $@ ); \
|
||||
done
|
||||
|
||||
|
@ -1,63 +0,0 @@
|
||||
#!gmake
|
||||
#
|
||||
# The contents of this file are subject to the Mozilla Public
|
||||
# License Version 1.1 (the "License"); you may not use this file
|
||||
# except in compliance with the License. You may obtain a copy of
|
||||
# the License at http://www.mozilla.org/MPL/
|
||||
#
|
||||
# Software distributed under the License is distributed on an "AS
|
||||
# IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
|
||||
# implied. See the License for the specific language governing
|
||||
# rights and limitations under the License.
|
||||
#
|
||||
# The Original Code is the Grendel mail/news client.
|
||||
#
|
||||
# The Initial Developer of the Original Code is Netscape Communications
|
||||
# Corporation. Portions created by Netscape are
|
||||
# Copyright (C) 1997 Netscape Communications Corporation. All
|
||||
# Rights Reserved.
|
||||
#
|
||||
# Contributor(s):
|
||||
|
||||
SRCS= \
|
||||
CompositionShell.java \
|
||||
CompositionView.java \
|
||||
FolderCtx.java \
|
||||
FolderView.java \
|
||||
SessionView.java \
|
||||
Shell.java \
|
||||
StoreCtx.java \
|
||||
$(NULL)
|
||||
|
||||
TOPDIR = @top_srcdir@
|
||||
|
||||
CLASSPATH_NEW = ${CLASSPATH}:$(TOPDIR)/..:$(TOPDIR)
|
||||
|
||||
JAVAC = @java_compiler@
|
||||
|
||||
JAVA = @java_run@
|
||||
|
||||
RM = rm -f
|
||||
|
||||
OBJS = $(subst .java,.class,$(SRCS))
|
||||
|
||||
.SUFFIXES: .java .class
|
||||
|
||||
.java.class:
|
||||
$(JAVAC) -classpath $(CLASSPATH_NEW) -J-mx64m -g $*.java
|
||||
|
||||
all:: $(OBJS)
|
||||
|
||||
clean::
|
||||
$(RM) *.class
|
||||
|
||||
distclean::
|
||||
$(RM) *.class *~ core Makefile
|
||||
|
||||
all clean distclean::
|
||||
@sd="$(SUBDIRS)" ; \
|
||||
for dir in $$sd; do \
|
||||
( cd $$dir ; $(MAKE) $@ ); \
|
||||
done
|
||||
|
||||
|
@ -1,68 +0,0 @@
|
||||
#!gmake
|
||||
#
|
||||
# The contents of this file are subject to the Mozilla Public
|
||||
# License Version 1.1 (the "License"); you may not use this file
|
||||
# except in compliance with the License. You may obtain a copy of
|
||||
# the License at http://www.mozilla.org/MPL/
|
||||
#
|
||||
# Software distributed under the License is distributed on an "AS
|
||||
# IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
|
||||
# implied. See the License for the specific language governing
|
||||
# rights and limitations under the License.
|
||||
#
|
||||
# The Original Code is the Grendel mail/news client.
|
||||
#
|
||||
# The Initial Developer of the Original Code is Netscape Communications
|
||||
# Corporation. Portions created by Netscape are
|
||||
# Copyright (C) 1997 Netscape Communications Corporation. All
|
||||
# Rights Reserved.
|
||||
#
|
||||
# Contributor(s):
|
||||
|
||||
SUBDIRS= \
|
||||
html \
|
||||
parser \
|
||||
encoder \
|
||||
extractor \
|
||||
$(NULL)
|
||||
|
||||
SRCS= \
|
||||
HeaderCharsetDecoder.java \
|
||||
IMimeObject.java \
|
||||
IMimeOperator.java \
|
||||
IMimeParser.java \
|
||||
TestMime.java \
|
||||
$(NULL)
|
||||
|
||||
TOPDIR = @top_srcdir@
|
||||
|
||||
CLASSPATH_NEW = ${CLASSPATH}:$(TOPDIR)/..:$(TOPDIR)
|
||||
|
||||
JAVAC = @java_compiler@
|
||||
|
||||
JAVA = @java_run@
|
||||
|
||||
RM = rm -f
|
||||
|
||||
OBJS = $(subst .java,.class,$(SRCS))
|
||||
|
||||
.SUFFIXES: .java .class
|
||||
|
||||
.java.class:
|
||||
$(JAVAC) -classpath $(CLASSPATH_NEW) -J-mx64m -g $*.java
|
||||
|
||||
all:: $(OBJS)
|
||||
|
||||
clean::
|
||||
$(RM) *.class
|
||||
|
||||
distclean::
|
||||
$(RM) *.class *~ core Makefile
|
||||
|
||||
all clean distclean::
|
||||
@sd="$(SUBDIRS)" ; \
|
||||
for dir in $$sd; do \
|
||||
( cd $$dir ; $(MAKE) $@ ); \
|
||||
done
|
||||
|
||||
|
@ -1,63 +0,0 @@
|
||||
#!gmake
|
||||
#
|
||||
# The contents of this file are subject to the Mozilla Public
|
||||
# License Version 1.1 (the "License"); you may not use this file
|
||||
# except in compliance with the License. You may obtain a copy of
|
||||
# the License at http://www.mozilla.org/MPL/
|
||||
#
|
||||
# Software distributed under the License is distributed on an "AS
|
||||
# IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
|
||||
# implied. See the License for the specific language governing
|
||||
# rights and limitations under the License.
|
||||
#
|
||||
# The Original Code is the Grendel mail/news client.
|
||||
#
|
||||
# The Initial Developer of the Original Code is Netscape Communications
|
||||
# Corporation. Portions created by Netscape are
|
||||
# Copyright (C) 1997 Netscape Communications Corporation. All
|
||||
# Rights Reserved.
|
||||
#
|
||||
# Contributor(s):
|
||||
|
||||
SRCS= \
|
||||
MimeBase64Decoder.java \
|
||||
MimeBase64Encoder.java \
|
||||
MimeEncoder.java \
|
||||
MimeQuotedPrintableDecoder.java \
|
||||
MimeQuotedPrintableEncoder.java \
|
||||
MimeUUDecoder.java \
|
||||
MimeUUEncoder.java \
|
||||
$(NULL)
|
||||
|
||||
TOPDIR = @top_srcdir@
|
||||
|
||||
CLASSPATH_NEW = ${CLASSPATH}:$(TOPDIR)/..:$(TOPDIR)
|
||||
|
||||
JAVAC = @java_compiler@
|
||||
|
||||
JAVA = @java_run@
|
||||
|
||||
RM = rm -f
|
||||
|
||||
OBJS = $(subst .java,.class,$(SRCS))
|
||||
|
||||
.SUFFIXES: .java .class
|
||||
|
||||
.java.class:
|
||||
$(JAVAC) -classpath $(CLASSPATH_NEW) -J-mx64m -g $*.java
|
||||
|
||||
all:: $(OBJS)
|
||||
|
||||
clean::
|
||||
$(RM) *.class
|
||||
|
||||
distclean::
|
||||
$(RM) *.class *~ core Makefile
|
||||
|
||||
all clean distclean::
|
||||
@sd="$(SUBDIRS)" ; \
|
||||
for dir in $$sd; do \
|
||||
( cd $$dir ; $(MAKE) $@ ); \
|
||||
done
|
||||
|
||||
|
@ -1,57 +0,0 @@
|
||||
#!gmake
|
||||
#
|
||||
# The contents of this file are subject to the Mozilla Public
|
||||
# License Version 1.1 (the "License"); you may not use this file
|
||||
# except in compliance with the License. You may obtain a copy of
|
||||
# the License at http://www.mozilla.org/MPL/
|
||||
#
|
||||
# Software distributed under the License is distributed on an "AS
|
||||
# IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
|
||||
# implied. See the License for the specific language governing
|
||||
# rights and limitations under the License.
|
||||
#
|
||||
# The Original Code is the Grendel mail/news client.
|
||||
#
|
||||
# The Initial Developer of the Original Code is Netscape Communications
|
||||
# Corporation. Portions created by Netscape are
|
||||
# Copyright (C) 1997 Netscape Communications Corporation. All
|
||||
# Rights Reserved.
|
||||
#
|
||||
# Contributor(s):
|
||||
|
||||
SRCS= \
|
||||
MimeExtractorOperatorFactory.java \
|
||||
$(NULL)
|
||||
|
||||
TOPDIR = @top_srcdir@
|
||||
|
||||
CLASSPATH_NEW = ${CLASSPATH}:$(TOPDIR)/..:$(TOPDIR)
|
||||
|
||||
JAVAC = @java_compiler@
|
||||
|
||||
JAVA = @java_run@
|
||||
|
||||
RM = rm -f
|
||||
|
||||
OBJS = $(subst .java,.class,$(SRCS))
|
||||
|
||||
.SUFFIXES: .java .class
|
||||
|
||||
.java.class:
|
||||
$(JAVAC) -classpath $(CLASSPATH_NEW) -J-mx64m -g $*.java
|
||||
|
||||
all:: $(OBJS)
|
||||
|
||||
clean::
|
||||
$(RM) *.class
|
||||
|
||||
distclean::
|
||||
$(RM) *.class *~ core Makefile
|
||||
|
||||
all clean distclean::
|
||||
@sd="$(SUBDIRS)" ; \
|
||||
for dir in $$sd; do \
|
||||
( cd $$dir ; $(MAKE) $@ ); \
|
||||
done
|
||||
|
||||
|
@ -1,77 +0,0 @@
|
||||
#!gmake
|
||||
#
|
||||
# The contents of this file are subject to the Mozilla Public
|
||||
# License Version 1.1 (the "License"); you may not use this file
|
||||
# except in compliance with the License. You may obtain a copy of
|
||||
# the License at http://www.mozilla.org/MPL/
|
||||
#
|
||||
# Software distributed under the License is distributed on an "AS
|
||||
# IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
|
||||
# implied. See the License for the specific language governing
|
||||
# rights and limitations under the License.
|
||||
#
|
||||
# The Original Code is the Grendel mail/news client.
|
||||
#
|
||||
# The Initial Developer of the Original Code is Netscape Communications
|
||||
# Corporation. Portions created by Netscape are
|
||||
# Copyright (C) 1997 Netscape Communications Corporation. All
|
||||
# Rights Reserved.
|
||||
#
|
||||
# Contributor(s):
|
||||
|
||||
SRCS= \
|
||||
BriefHeaderFormatter.java \
|
||||
FullHeaderFormatter.java \
|
||||
HeaderFormatter.java \
|
||||
MimeContainerOperator.java \
|
||||
MimeExternalBodyOperator.java \
|
||||
MimeExternalObjectOperator.java \
|
||||
MimeHTMLOperator.java \
|
||||
MimeHTMLOperatorFactory.java \
|
||||
MimeLeafOperator.java \
|
||||
MimeMessageOperator.java \
|
||||
MimeMultipartAlternativeOperator.java \
|
||||
MimeMultipartAppleDoubleOperator.java \
|
||||
MimeMultipartRelatedOperator.java \
|
||||
MimeMultipartSignedOperator.java \
|
||||
MimeTextEnrichedOperator.java \
|
||||
MimeTextHTMLOperator.java \
|
||||
MimeTextOperator.java \
|
||||
MimeTextRichtextOperator.java \
|
||||
MimeTextVCardOperator.java \
|
||||
NormalHeaderFormatter.java \
|
||||
TextHTMLConverter.java \
|
||||
$(NULL)
|
||||
|
||||
TOPDIR = @top_srcdir@
|
||||
|
||||
CLASSPATH_NEW = ${CLASSPATH}:$(TOPDIR)/..:$(TOPDIR)
|
||||
|
||||
JAVAC = @java_compiler@
|
||||
|
||||
JAVA = @java_run@
|
||||
|
||||
RM = rm -f
|
||||
|
||||
OBJS = $(subst .java,.class,$(SRCS))
|
||||
|
||||
.SUFFIXES: .java .class
|
||||
|
||||
.java.class:
|
||||
$(JAVAC) -classpath $(CLASSPATH_NEW) -J-mx64m -g $*.java
|
||||
|
||||
all:: $(OBJS)
|
||||
|
||||
clean::
|
||||
$(RM) *.class
|
||||
|
||||
distclean::
|
||||
$(RM) *.class *~ core Makefile
|
||||
|
||||
all clean distclean::
|
||||
@sd="$(SUBDIRS)" ; \
|
||||
for dir in $$sd; do \
|
||||
( cd $$dir ; $(MAKE) $@ ); \
|
||||
done
|
||||
|
||||
|
@ -1,66 +0,0 @@
|
||||
#!gmake
|
||||
#
|
||||
# The contents of this file are subject to the Mozilla Public
|
||||
# License Version 1.1 (the "License"); you may not use this file
|
||||
# except in compliance with the License. You may obtain a copy of
|
||||
# the License at http://www.mozilla.org/MPL/
|
||||
#
|
||||
# Software distributed under the License is distributed on an "AS
|
||||
# IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
|
||||
# implied. See the License for the specific language governing
|
||||
# rights and limitations under the License.
|
||||
#
|
||||
# The Original Code is the Grendel mail/news client.
|
||||
#
|
||||
# The Initial Developer of the Original Code is Netscape Communications
|
||||
# Corporation. Portions created by Netscape are
|
||||
# Copyright (C) 1997 Netscape Communications Corporation. All
|
||||
# Rights Reserved.
|
||||
#
|
||||
# Contributor(s):
|
||||
|
||||
SRCS= \
|
||||
MimeContainer.java \
|
||||
MimeDwimText.java \
|
||||
MimeLeaf.java \
|
||||
MimeMessageExternalBody.java \
|
||||
MimeMessageRFC822.java \
|
||||
MimeMultipart.java \
|
||||
MimeMultipartDigest.java \
|
||||
MimeObject.java \
|
||||
MimeParserFactory.java \
|
||||
MimeXSunAttachment.java \
|
||||
$(NULL)
|
||||
|
||||
TOPDIR = @top_srcdir@
|
||||
|
||||
CLASSPATH_NEW = ${CLASSPATH}:$(TOPDIR)/..:$(TOPDIR)
|
||||
|
||||
JAVAC = @java_compiler@
|
||||
|
||||
JAVA = @java_run@
|
||||
|
||||
RM = rm -f
|
||||
|
||||
OBJS = $(subst .java,.class,$(SRCS))
|
||||
|
||||
.SUFFIXES: .java .class
|
||||
|
||||
.java.class:
|
||||
$(JAVAC) -classpath $(CLASSPATH_NEW) -J-mx64m -g $*.java
|
||||
|
||||
all:: $(OBJS)
|
||||
|
||||
clean::
|
||||
$(RM) *.class
|
||||
|
||||
distclean::
|
||||
$(RM) *.class *~ core Makefile
|
||||
|
||||
all clean distclean::
|
||||
@sd="$(SUBDIRS)" ; \
|
||||
for dir in $$sd; do \
|
||||
( cd $$dir ; $(MAKE) $@ ); \
|
||||
done
|
||||
|
||||
|
@ -1,59 +0,0 @@
|
||||
#!gmake
|
||||
#
|
||||
# The contents of this file are subject to the Mozilla Public
|
||||
# License Version 1.1 (the "License"); you may not use this file
|
||||
# except in compliance with the License. You may obtain a copy of
|
||||
# the License at http://www.mozilla.org/MPL/
|
||||
#
|
||||
# Software distributed under the License is distributed on an "AS
|
||||
# IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
|
||||
# implied. See the License for the specific language governing
|
||||
# rights and limitations under the License.
|
||||
#
|
||||
# The Original Code is the Grendel mail/news client.
|
||||
#
|
||||
# The Initial Developer of the Original Code is Netscape Communications
|
||||
# Corporation. Portions created by Netscape are
|
||||
# Copyright (C) 1997 Netscape Communications Corporation. All
|
||||
# Rights Reserved.
|
||||
#
|
||||
# Contributor(s): Giao Nguyen <grail@cafebabe.org>
|
||||
# Edwin Woudt <edwin@woudt.nl>
|
||||
|
||||
SUBDIRS= base \
|
||||
ui \
|
||||
$(NULL)
|
||||
|
||||
|
||||
TOPDIR = @top_srcdir@
|
||||
|
||||
CLASSPATH_NEW = ${CLASSPATH}:$(TOPDIR)/..:$(TOPDIR)
|
||||
|
||||
JAVAC = @java_compiler@
|
||||
|
||||
JAVA = @java_run@
|
||||
|
||||
RM = rm -f
|
||||
|
||||
OBJS = $(subst .java,.class,$(SRCS))
|
||||
|
||||
.SUFFIXES: .java .class
|
||||
|
||||
.java.class:
|
||||
$(JAVAC) -classpath $(CLASSPATH_NEW) -J-mx64m -g $*.java
|
||||
|
||||
all:: $(OBJS)
|
||||
|
||||
clean::
|
||||
$(RM) *.class
|
||||
|
||||
distclean::
|
||||
$(RM) *.class *~ core Makefile
|
||||
|
||||
all clean distclean::
|
||||
@sd="$(SUBDIRS)" ; \
|
||||
for dir in $$sd; do \
|
||||
( cd $$dir ; $(MAKE) $@ ); \
|
||||
done
|
||||
|
||||
|
@ -1,62 +0,0 @@
|
||||
#!gmake
|
||||
#
|
||||
# The contents of this file are subject to the Mozilla Public
|
||||
# License Version 1.1 (the "License"); you may not use this file
|
||||
# except in compliance with the License. You may obtain a copy of
|
||||
# the License at http://www.mozilla.org/MPL/
|
||||
#
|
||||
# Software distributed under the License is distributed on an "AS
|
||||
# IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
|
||||
# implied. See the License for the specific language governing
|
||||
# rights and limitations under the License.
|
||||
#
|
||||
# The Original Code is the Grendel mail/news client.
|
||||
#
|
||||
# The Initial Developer of the Original Code is Netscape Communications
|
||||
# Corporation. Portions created by Netscape are
|
||||
# Copyright (C) 1997 Netscape Communications Corporation. All
|
||||
# Rights Reserved.
|
||||
#
|
||||
# Contributor(s): Giao Nguyen <grail@cafebabe.org>
|
||||
|
||||
SRCS = GeneralPrefs.java \
|
||||
IdentityArray.java \
|
||||
IdentityStructure.java \
|
||||
InvisiblePrefs.java \
|
||||
ServerArray.java \
|
||||
ServerStructure.java \
|
||||
UIPrefs.java \
|
||||
$(NULL)
|
||||
|
||||
TOPDIR = @top_srcdir@
|
||||
|
||||
CLASSPATH_NEW = ${CLASSPATH}:$(TOPDIR)/..:$(TOPDIR)
|
||||
|
||||
JAVAC = @java_compiler@
|
||||
|
||||
JAVA = @java_run@
|
||||
|
||||
RM = rm -f
|
||||
|
||||
OBJS = $(subst .java,.class,$(SRCS))
|
||||
|
||||
.SUFFIXES: .java .class
|
||||
|
||||
.java.class:
|
||||
$(JAVAC) -classpath $(CLASSPATH_NEW) -J-mx64m -g $*.java
|
||||
|
||||
all:: $(OBJS)
|
||||
|
||||
clean::
|
||||
$(RM) *.class
|
||||
|
||||
distclean::
|
||||
$(RM) *.class *~ core Makefile
|
||||
|
||||
all clean distclean::
|
||||
@sd="$(SUBDIRS)" ; \
|
||||
for dir in $$sd; do \
|
||||
( cd $$dir ; $(MAKE) $@ ); \
|
||||
done
|
||||
|
||||
|
@ -1,59 +0,0 @@
|
||||
#!gmake
|
||||
#
|
||||
# The contents of this file are subject to the Mozilla Public
|
||||
# License Version 1.1 (the "License"); you may not use this file
|
||||
# except in compliance with the License. You may obtain a copy of
|
||||
# the License at http://www.mozilla.org/MPL/
|
||||
#
|
||||
# Software distributed under the License is distributed on an "AS
|
||||
# IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
|
||||
# implied. See the License for the specific language governing
|
||||
# rights and limitations under the License.
|
||||
#
|
||||
# The Original Code is the Grendel mail/news client.
|
||||
#
|
||||
# The Initial Developer of the Original Code is Netscape Communications
|
||||
# Corporation. Portions created by Netscape are
|
||||
# Copyright (C) 1997 Netscape Communications Corporation. All
|
||||
# Rights Reserved.
|
||||
#
|
||||
# Contributor(s): Giao Nguyen <grail@cafebabe.org>
|
||||
|
||||
SRCS = General.java \
|
||||
Identities.java \
|
||||
Servers.java \
|
||||
UI.java \
|
||||
$(NULL)
|
||||
|
||||
TOPDIR = @top_srcdir@
|
||||
|
||||
CLASSPATH_NEW = ${CLASSPATH}:$(TOPDIR)/..:$(TOPDIR)
|
||||
|
||||
JAVAC = @java_compiler@
|
||||
|
||||
JAVA = @java_run@
|
||||
|
||||
RM = rm -f
|
||||
|
||||
OBJS = $(subst .java,.class,$(SRCS))
|
||||
|
||||
.SUFFIXES: .java .class
|
||||
|
||||
.java.class:
|
||||
$(JAVAC) -classpath $(CLASSPATH_NEW) -J-mx64m -g $*.java
|
||||
|
||||
all:: $(OBJS)
|
||||
|
||||
clean::
|
||||
$(RM) *.class
|
||||
|
||||
distclean::
|
||||
$(RM) *.class *~ core Makefile
|
||||
|
||||
all clean distclean::
|
||||
@sd="$(SUBDIRS)" ; \
|
||||
for dir in $$sd; do \
|
||||
( cd $$dir ; $(MAKE) $@ ); \
|
||||
done
|
||||
|
||||
|
@ -1,71 +0,0 @@
|
||||
#!gmake
|
||||
#
|
||||
# The contents of this file are subject to the Mozilla Public
|
||||
# License Version 1.1 (the "License"); you may not use this file
|
||||
# except in compliance with the License. You may obtain a copy of
|
||||
# the License at http://www.mozilla.org/MPL/
|
||||
#
|
||||
# Software distributed under the License is distributed on an "AS
|
||||
# IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
|
||||
# implied. See the License for the specific language governing
|
||||
# rights and limitations under the License.
|
||||
#
|
||||
# The Original Code is the Grendel mail/news client.
|
||||
#
|
||||
# The Initial Developer of the Original Code is Netscape Communications
|
||||
# Corporation. Portions created by Netscape are
|
||||
# Copyright (C) 1997 Netscape Communications Corporation. All
|
||||
# Rights Reserved.
|
||||
#
|
||||
# Contributor(s):
|
||||
|
||||
SRCS= \
|
||||
AndPanel.java \
|
||||
AttributeLayout.java \
|
||||
AttributePanel.java \
|
||||
ISearchAttribute.java \
|
||||
ISearchResults.java \
|
||||
ISearchable.java \
|
||||
MailSearch.java \
|
||||
NaryTermPanel.java \
|
||||
NoopPanel.java \
|
||||
OperatorLayout.java \
|
||||
OrPanel.java \
|
||||
ResultsFrame.java \
|
||||
SearchFrame.java \
|
||||
SearchPanel.java \
|
||||
TermPanel.java \
|
||||
$(NULL)
|
||||
|
||||
TOPDIR = @top_srcdir@
|
||||
|
||||
CLASSPATH_NEW = ${CLASSPATH}:$(TOPDIR)/..:$(TOPDIR)
|
||||
|
||||
JAVAC = @java_compiler@
|
||||
|
||||
JAVA = @java_run@
|
||||
|
||||
RM = rm -f
|
||||
|
||||
OBJS = $(subst .java,.class,$(SRCS))
|
||||
|
||||
.SUFFIXES: .java .class
|
||||
|
||||
.java.class:
|
||||
$(JAVAC) -classpath $(CLASSPATH_NEW) -J-mx64m -g $*.java
|
||||
|
||||
all:: $(OBJS)
|
||||
|
||||
clean::
|
||||
$(RM) *.class
|
||||
|
||||
distclean::
|
||||
$(RM) *.class *~ core Makefile
|
||||
|
||||
all clean distclean::
|
||||
@sd="$(SUBDIRS)" ; \
|
||||
for dir in $$sd; do \
|
||||
( cd $$dir ; $(MAKE) $@ ); \
|
||||
done
|
||||
|
||||
|
@ -30,7 +30,7 @@ import java.util.*;
|
||||
* This hastable uses identity comparisons on keys
|
||||
*
|
||||
* @author psl 10-15-97 1:22pm
|
||||
* @version $Revision: 1.2 $
|
||||
* @version $Revision: 1.1 $
|
||||
* @see
|
||||
*/
|
||||
public class AtomHashtable extends HashtableBase
|
@ -32,7 +32,7 @@ import java.lang.String;
|
||||
* ByteToCharConverterEnumeration return a Enumeration of String which
|
||||
* represent ByteToCharConverter available in the classpath
|
||||
* @author ftang
|
||||
* @version $Revision: 1.2 $
|
||||
* @version $Revision: 1.1 $
|
||||
* @see
|
||||
*
|
||||
*/
|
||||
@ -41,7 +41,7 @@ public class ByteToCharConverterEnumeration extends PrefetchEnumeration {
|
||||
/*
|
||||
*
|
||||
* @author ftang
|
||||
* @version $Revision: 1.2 $
|
||||
* @version $Revision: 1.1 $
|
||||
* @see
|
||||
*
|
||||
*/
|
||||
@ -52,7 +52,7 @@ public class ByteToCharConverterEnumeration extends PrefetchEnumeration {
|
||||
/*
|
||||
*
|
||||
* @author ftang
|
||||
* @version $Revision: 1.2 $
|
||||
* @version $Revision: 1.1 $
|
||||
* @see
|
||||
*
|
||||
*/
|
||||
@ -69,7 +69,7 @@ public class ByteToCharConverterEnumeration extends PrefetchEnumeration {
|
||||
/*
|
||||
*
|
||||
* @author ftang
|
||||
* @version $Revision: 1.2 $
|
||||
* @version $Revision: 1.1 $
|
||||
* @see
|
||||
*
|
||||
*/
|
@ -30,7 +30,7 @@ import sun.io.CharToByteConverter;
|
||||
* which represent available CharToByteConverter in the class path
|
||||
*
|
||||
* @author ftang
|
||||
* @version $Revision: 1.2 $
|
||||
* @version $Revision: 1.1 $
|
||||
* @see
|
||||
*
|
||||
*/
|
||||
@ -40,7 +40,7 @@ public class CharToByteConverterEnumeration extends PrefetchEnumeration {
|
||||
/*
|
||||
*
|
||||
* @author ftang
|
||||
* @version $Revision: 1.2 $
|
||||
* @version $Revision: 1.1 $
|
||||
* @see
|
||||
*
|
||||
*/
|
||||
@ -52,7 +52,7 @@ public class CharToByteConverterEnumeration extends PrefetchEnumeration {
|
||||
/*
|
||||
*
|
||||
* @author ftang
|
||||
* @version $Revision: 1.2 $
|
||||
* @version $Revision: 1.1 $
|
||||
* @see
|
||||
*
|
||||
*/
|
||||
@ -69,7 +69,7 @@ public class CharToByteConverterEnumeration extends PrefetchEnumeration {
|
||||
/*
|
||||
*
|
||||
* @author ftang
|
||||
* @version $Revision: 1.2 $
|
||||
* @version $Revision: 1.1 $
|
||||
* @see
|
||||
*
|
||||
*/
|
@ -34,7 +34,7 @@ import java.util.Hashtable;
|
||||
/*
|
||||
*
|
||||
* @author ftang
|
||||
* @version $Revision: 1.2 $
|
||||
* @version $Revision: 1.1 $
|
||||
* @see
|
||||
*
|
||||
*/
|
||||
@ -172,7 +172,7 @@ public class ClasspathEntryEnumeration extends PrefetchEnumeration {
|
||||
|
||||
/*
|
||||
* @author ftang
|
||||
* @version $Revision: 1.2 $
|
||||
* @version $Revision: 1.1 $
|
||||
* @see
|
||||
*
|
||||
*/
|
||||
@ -192,7 +192,7 @@ public class ClasspathEntryEnumeration extends PrefetchEnumeration {
|
||||
/*
|
||||
*
|
||||
* @author ftang
|
||||
* @version $Revision: 1.2 $
|
||||
* @version $Revision: 1.1 $
|
||||
* @see
|
||||
*
|
||||
*/
|
@ -28,7 +28,7 @@ import java.net.URLEncoder;
|
||||
/*
|
||||
*
|
||||
* @author ftang
|
||||
* @version $Revision: 1.2 $
|
||||
* @version $Revision: 1.1 $
|
||||
* @see
|
||||
*
|
||||
*/
|
||||
@ -41,7 +41,7 @@ public class DataExtension {
|
||||
/*
|
||||
*
|
||||
* @author ftang
|
||||
* @version $Revision: 1.2 $
|
||||
* @version $Revision: 1.1 $
|
||||
* @see
|
||||
*
|
||||
*/
|
||||
@ -58,7 +58,7 @@ public class DataExtension {
|
||||
/*
|
||||
*
|
||||
* @author ftang
|
||||
* @version $Revision: 1.2 $
|
||||
* @version $Revision: 1.1 $
|
||||
* @see
|
||||
*
|
||||
*/
|
||||
@ -76,7 +76,7 @@ public class DataExtension {
|
||||
/*
|
||||
*
|
||||
* @author ftang
|
||||
* @version $Revision: 1.2 $
|
||||
* @version $Revision: 1.1 $
|
||||
* @see
|
||||
*
|
||||
*/
|
@ -28,7 +28,7 @@ import java.util.Enumeration;
|
||||
/*
|
||||
*
|
||||
* @author ftang
|
||||
* @version $Revision: 1.2 $
|
||||
* @version $Revision: 1.1 $
|
||||
* @see
|
||||
*
|
||||
*/
|
||||
@ -38,7 +38,7 @@ public abstract class PrefetchEnumeration implements Enumeration {
|
||||
/*
|
||||
*
|
||||
* @author ftang
|
||||
* @version $Revision: 1.2 $
|
||||
* @version $Revision: 1.1 $
|
||||
* @see
|
||||
*
|
||||
*/
|
||||
@ -53,7 +53,7 @@ public abstract class PrefetchEnumeration implements Enumeration {
|
||||
/*
|
||||
*
|
||||
* @author ftang
|
||||
* @version $Revision: 1.2 $
|
||||
* @version $Revision: 1.1 $
|
||||
* @see
|
||||
*
|
||||
*/
|
||||
@ -68,7 +68,7 @@ public abstract class PrefetchEnumeration implements Enumeration {
|
||||
/*
|
||||
*
|
||||
* @author ftang
|
||||
* @version $Revision: 1.2 $
|
||||
* @version $Revision: 1.1 $
|
||||
* @see
|
||||
*
|
||||
*/
|
||||
@ -81,7 +81,7 @@ public abstract class PrefetchEnumeration implements Enumeration {
|
||||
/*
|
||||
*
|
||||
* @author ftang
|
||||
* @version $Revision: 1.2 $
|
||||
* @version $Revision: 1.1 $
|
||||
* @see
|
||||
*
|
||||
*/
|
@ -28,7 +28,7 @@ import java.util.*;
|
||||
*
|
||||
*
|
||||
* @author gess 04-16-97 1:44pm
|
||||
* @version $Revision: 1.2 $
|
||||
* @version $Revision: 1.1 $
|
||||
* @notes This is a general purpose recycler.
|
||||
* It contains objects of a specified capacity.
|
||||
* If you ask for a recycled object and we have
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
x
Reference in New Issue
Block a user