Added Makefile.in for the toplevel configure script to generate Makefile from.

This commit is contained in:
talisman%anamorphic.com 1999-08-06 05:57:18 +00:00
parent 4ecdd8e9e9
commit 4189a0cb48
19 changed files with 1179 additions and 0 deletions

View File

@ -0,0 +1,65 @@
#!gmake
#
# The contents of this file are subject to the Mozilla Public License
# Version 1.0 (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.
#
# Contributors: 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

View File

@ -0,0 +1,77 @@
#!gmake
#
# The contents of this file are subject to the Mozilla Public License
# Version 1.0 (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.
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

View File

@ -0,0 +1,54 @@
#!gmake
#
# The contents of this file are subject to the Mozilla Public License
# Version 1.0 (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.
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

View File

@ -0,0 +1,69 @@
#!gmake
#
# The contents of this file are subject to the Mozilla Public License
# Version 1.0 (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.
#
# Contributors: 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

67
grendel/dnd/Makefile.in Normal file
View File

@ -0,0 +1,67 @@
#!gmake
#
# The contents of this file are subject to the Mozilla Public License
# Version 1.0 (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.
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

55
grendel/dog/Makefile.in Normal file
View File

@ -0,0 +1,55 @@
#!gmake
#
# The contents of this file are subject to the Mozilla Public License
# Version 1.0 (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.
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

View File

@ -0,0 +1,55 @@
#!gmake
#
# The contents of this file are subject to the Mozilla Public License
# Version 1.0 (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.
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

View File

@ -0,0 +1,56 @@
#!gmake
#
# The contents of this file are subject to the Mozilla Public License
# Version 1.0 (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.
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

View File

@ -0,0 +1,57 @@
#!gmake
#
# The contents of this file are subject to the Mozilla Public License
# Version 1.0 (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.
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

View File

@ -0,0 +1,64 @@
#!gmake
#
# The contents of this file are subject to the Mozilla Public License
# Version 1.0 (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.
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

View File

@ -0,0 +1,65 @@
#!gmake
#
# The contents of this file are subject to the Mozilla Public License
# Version 1.0 (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.
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

View File

@ -0,0 +1,60 @@
#!gmake
#
# The contents of this file are subject to the Mozilla Public License
# Version 1.0 (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.
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

65
grendel/mime/Makefile.in Normal file
View File

@ -0,0 +1,65 @@
#!gmake
#
# The contents of this file are subject to the Mozilla Public License
# Version 1.0 (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.
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

View File

@ -0,0 +1,60 @@
#!gmake
#
# The contents of this file are subject to the Mozilla Public License
# Version 1.0 (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.
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

View File

@ -0,0 +1,54 @@
#!gmake
#
# The contents of this file are subject to the Mozilla Public License
# Version 1.0 (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.
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

View File

@ -0,0 +1,74 @@
#!gmake
#
# The contents of this file are subject to the Mozilla Public License
# Version 1.0 (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.
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

View File

@ -0,0 +1,63 @@
#!gmake
#
# The contents of this file are subject to the Mozilla Public License
# Version 1.0 (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.
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

58
grendel/prefs/Makefile.in Normal file
View File

@ -0,0 +1,58 @@
#!gmake
#
# The contents of this file are subject to the Mozilla Public License
# Version 1.0 (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.
#
# Contributors: 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

View File

@ -0,0 +1,61 @@
#!gmake
#
# The contents of this file are subject to the Mozilla Public License
# Version 1.0 (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.
#
# Contributors: 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