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

This commit is contained in:
talisman%anamorphic.com 1999-08-06 06:10:15 +00:00
parent 4189a0cb48
commit 310d461115
9 changed files with 678 additions and 0 deletions

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>
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

View File

@ -0,0 +1,68 @@
#!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= \
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

108
grendel/storage/Makefile.in Normal file
View File

@ -0,0 +1,108 @@
#!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: Edwin Woudt <edwin@woudt.nl>
SUBDIRS= \
addressparser \
intertwingle \
$(NULL)
SRCS= \
BerkeleyFolder.java \
BerkeleyMessage.java \
BerkeleyStore.java \
ByteString.java \
ByteStringTable.java \
DotTerminatedInputStream.java \
FilterFolder.java \
FilterFolderFactory.java \
FolderBase.java \
FolderExtra.java \
FolderExtraFactory.java \
MailDrop.java \
MailDropException.java \
MailSummaryFile.java \
MailSummaryFileCheddar.java \
MailSummaryFileFactory.java \
MailSummaryFileGrendel.java \
MasterBase.java \
MessageBase.java \
MessageExtra.java \
MessageExtraFactory.java \
MessageExtraWrapper.java \
MessageID.java \
MessageIDTable.java \
MessageReadOnly.java \
NNTPConnection.java \
NNTPException.java \
NewsFolder.java \
NewsFolderRoot.java \
NewsMessage.java \
NewsRC.java \
NewsRCLine.java \
NewsSet.java \
NewsStore.java \
Obarray.java \
PackedIntArray.java \
ParseBerkeleyFolder.java \
ParseBerkeleyFolderAndExpunge.java \
ParseBerkeleyFolderWithSummary.java \
PartialFileInputStream.java \
PopFolder.java \
PopMailDrop.java \
PopMessage.java \
PopStore.java \
SearchResultsFolderFactory.java \
UnixDotLock.java \
$(NULL)
# SelfTest.java \
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,68 @@
#!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= \
AddressCorrector.java \
AddressToken.java \
GroupToken.java \
MailAddressToken.java \
MailboxToken.java \
P1.java \
P2.java \
RFC822AddressList.java \
RFC822AddressParser.java \
RFC822Mailbox.java \
RFC822MailboxList.java \
RFC822ParserException.java \
RFC822Token.java \
RFC822Tokenizer.java \
RouteAddrNoPhraseException.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,62 @@
#!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= \
BGDB.java \
BaseDB.java \
DB.java \
Dump.java \
HackDB.java \
PhoneTest.java \
SelfTest.java \
SimpleDB.java \
Twingle.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

96
grendel/ui/Makefile.in Normal file
View File

@ -0,0 +1,96 @@
#!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>
SRCS= \
ActionFactory.java \
BiffIcon.java \
BiffThread.java \
DialogAuthenticator.java \
EditHostDialog.java \
FolderCombo.java \
FolderFrame.java \
FolderListTransferable.java \
FolderPanel.java \
FolderPanelListener.java \
GeneralDialog.java \
GeneralFrame.java \
GeneralPanel.java \
MasterPanel.java \
MasterPanelListener.java \
MessageCellRenderer.java \
MessageDisplayManager.java \
MessageFrame.java \
MessageHeader.java \
MessageListTransferable.java \
MessageModel.java \
MessagePanel.java \
MessagePanelListener.java \
MultiMessageDisplayManager.java \
NewFolderDialog.java \
PrefsDialog.java \
ProgressFactory.java \
ProgressFrame.java \
SimpleAuthenticator.java \
SimpleMessageHeader.java \
StoreFactory.java \
ToolBarLayout.java \
UIAction.java \
UIFactory.java \
UnifiedMessageDisplayManager.java \
Util.java \
XMLPageBuilder.java \
XMLMenuBuilder.java \
XMLWidgetBuilder.java \
PageModel.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/util/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: Edwin Woudt <edwin@woudt.nl>
SRCS= \
Constants.java \
MessageIDGenerator.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

72
grendel/view/Makefile.in Normal file
View File

@ -0,0 +1,72 @@
#!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= \
DummyThreadable.java \
FolderView.java \
FolderViewBase.java \
FolderViewFactory.java \
ISortable.java \
IThreadable.java \
MessageSetView.java \
MessageSetViewObserver.java \
Sorter.java \
TestThreader.java \
Threader.java \
ViewedFolder.java \
ViewedFolderBase.java \
ViewedMessage.java \
ViewedMessageBase.java \
ViewedStore.java \
ViewedStoreBase.java \
ViewedStoreEvent.java \
ViewedStoreListener.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,88 @@
#!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>
SRCS= \
Animation.java \
CellEditor.java \
CellRenderer.java \
Collapsible.java \
CollapsiblePanel.java \
Column.java \
ColumnChangeListener.java \
ColumnHeader.java \
ColumnModel.java \
ColumnModelEvent.java \
ColumnModelImp.java \
ColumnModelListener.java \
DefaultCellRenderer.java \
DefaultHeaderRenderer.java \
GrendelToolBar.java \
HeaderRenderer.java \
MultiSelectionManager.java \
SelectionEvent.java \
SelectionListener.java \
SelectionManager.java \
SingleSelectionManager.java \
Splitter.java \
Spring.java \
StatusEvent.java \
TextCellEditor.java \
ToggleCellEditor.java \
ToggleCellRenderer.java \
TreePath.java \
TreeTable.java \
TreeTableDataModel.java \
TreeTableModelBroadcaster.java \
TreeTableModelEvent.java \
TreeTableModelListener.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