programs/: remove Imakefiles for completed modules
This commit is contained in:
@@ -1,115 +0,0 @@
|
||||
XCOMM $TOG: Imakefile /main/10 1998/11/09 18:30:37 mgreess $
|
||||
#define DoNormalLib YES
|
||||
#define DoSharedLib NO
|
||||
#define DoDebugLib NO
|
||||
#define DoProfileLib NO
|
||||
#define LibName DtMail
|
||||
#define LibHeaders NO
|
||||
#define LibCreate NO
|
||||
|
||||
#define CplusplusSource YES
|
||||
DEPEND_DEFINES = $(CXXDEPENDINCLUDES) $(DEPENDDEFINES)
|
||||
|
||||
#include <Threads.tmpl>
|
||||
|
||||
INCLUDES = -I. -I../../include -I../../include/utils -I$(CDELIBSRC) \
|
||||
$(STD_INCLUDES) $(TIRPCINC)
|
||||
|
||||
#if HasVFork
|
||||
VFORK_DEFINES = -DHAS_VFORK
|
||||
#else
|
||||
VFORK_DEFINES =
|
||||
#endif
|
||||
|
||||
#if defined(DtMailDynamicLinking) && DtMailDynamicLinking
|
||||
DYNLIB_SRCS = DlDynamicLib.C
|
||||
DYNLIB_OBJS = DlDynamicLib.o
|
||||
DYNLIB_DEFINES = -DDL_DYNAMIC_LIBS
|
||||
#else
|
||||
DYNLIB_SRCS = NotDynamic.C
|
||||
DYNLIB_OBJS = NotDynamic.o
|
||||
DYNLIB_DEFINES = -DDL_NOT_DYNAMIC
|
||||
#endif
|
||||
|
||||
#ifndef DtMailDefines
|
||||
# define DtMailDefines
|
||||
#endif
|
||||
|
||||
#ifndef HPArchitecture
|
||||
MAILSERVER_DEFINES = -DUSE_SOCKSTREAM
|
||||
#endif
|
||||
|
||||
DEFINES = $(VFORK_DEFINES) $(DYNLIB_DEFINES) $(MAILSERVER_DEFINES) DtMailDefines
|
||||
|
||||
SRCS = \
|
||||
$(DYNLIB_SRCS) \
|
||||
APOPServer.C \
|
||||
AUTOServer.C \
|
||||
Buffer.C \
|
||||
DetermineFileLocality.C \
|
||||
DtMailBodyPart.C \
|
||||
DtMailEnvelope.C \
|
||||
DtMailError.C \
|
||||
DtMailMailBox.C \
|
||||
DtMailMessage.C \
|
||||
DtMailRc.C \
|
||||
DtMailServer.C \
|
||||
DtMailTransport.C \
|
||||
DtMailValuesBuiltin.C \
|
||||
DtMailXtProc.C \
|
||||
DtVirtArray.C \
|
||||
DynamicLib.C \
|
||||
FileShare.C \
|
||||
HashTable.C \
|
||||
IMAPServer.C \
|
||||
IO.C \
|
||||
LanguagePortability.C \
|
||||
ObjectKey.C \
|
||||
POP2Server.C \
|
||||
POP3Server.C \
|
||||
Process.C \
|
||||
Session.C \
|
||||
Threads.C \
|
||||
md5.C \
|
||||
str_utils.C
|
||||
|
||||
/*
|
||||
* NOTE: All changes here must be mirrored in ../Imakefile's COMMON_OBJS
|
||||
*/
|
||||
OBJS = \
|
||||
$(DYNLIB_OBJS) \
|
||||
APOPServer.o \
|
||||
AUTOServer.o \
|
||||
Buffer.o \
|
||||
DetermineFileLocality.o \
|
||||
DtMailBodyPart.o \
|
||||
DtMailEnvelope.o \
|
||||
DtMailError.o \
|
||||
DtMailMailBox.o \
|
||||
DtMailMessage.o \
|
||||
DtMailRc.o \
|
||||
DtMailServer.o \
|
||||
DtMailTransport.o \
|
||||
DtMailValuesBuiltin.o \
|
||||
DtMailXtProc.o \
|
||||
DtVirtArray.o \
|
||||
DynamicLib.o \
|
||||
FileShare.o \
|
||||
HashTable.o \
|
||||
IMAPServer.o \
|
||||
IO.o \
|
||||
LanguagePortability.o \
|
||||
ObjectKey.o \
|
||||
POP2Server.o \
|
||||
POP3Server.o \
|
||||
Process.o \
|
||||
Session.o \
|
||||
Threads.o \
|
||||
md5.o \
|
||||
str_utils.o
|
||||
|
||||
#include <Library.tmpl>
|
||||
|
||||
SubdirLibraryRule($(OBJS))
|
||||
|
||||
DependTarget()
|
||||
@@ -1,82 +0,0 @@
|
||||
XCOMM $TOG: Imakefile /main/10 1998/08/10 15:47:14 mgreess $
|
||||
#define DoNormalLib YES
|
||||
#define DoSharedLib NO
|
||||
#define DoDebugLib NO
|
||||
#define DoProfileLib NO
|
||||
#define LibName DtMail
|
||||
#define LibHeaders NO
|
||||
#define LibInstall NO
|
||||
|
||||
#define CplusplusSource YES
|
||||
DEPEND_DEFINES = $(CXXDEPENDINCLUDES)
|
||||
|
||||
#define IHaveSubdirs
|
||||
#define PassCDebugFlags 'CDEBUGFLAGS=$(CDEBUGFLAGS)' 'CXXDEBUGFLAGS=$(CXXDEBUGFLAGS)'
|
||||
|
||||
SUBDIRS = Common RFC
|
||||
EXTRALIBRARYDEPS = Common/DONE RFC/DONE
|
||||
|
||||
MakeSubdirs($(SUBDIRS))
|
||||
ForceSubdirs($(SUBDIRS))
|
||||
DependSubdirs($(SUBDIRS))
|
||||
|
||||
#include <Threads.tmpl>
|
||||
|
||||
#if defined(DtMailDynamicLinking) && DtMailDynamicLinking
|
||||
DYNLIB_SRCS = Common/DlDynamicLib.C
|
||||
DYNLIB_OBJS = Common/DlDynamicLib.o
|
||||
#else
|
||||
DYNLIB_SRCS = Common/NotDynamic.C
|
||||
DYNLIB_OBJS = Common/NotDynamic.o
|
||||
#endif
|
||||
|
||||
COMMON_OBJS = \
|
||||
$(DYNLIB_OBJS) \
|
||||
Common/APOPServer.o \
|
||||
Common/AUTOServer.o \
|
||||
Common/Buffer.o \
|
||||
Common/DetermineFileLocality.o \
|
||||
Common/DtMailBodyPart.o \
|
||||
Common/DtMailEnvelope.o \
|
||||
Common/DtMailError.o \
|
||||
Common/DtMailMailBox.o \
|
||||
Common/DtMailMessage.o \
|
||||
Common/DtMailRc.o \
|
||||
Common/DtMailServer.o \
|
||||
Common/DtMailTransport.o \
|
||||
Common/DtMailValuesBuiltin.o \
|
||||
Common/DtMailXtProc.o \
|
||||
Common/DtVirtArray.o \
|
||||
Common/DynamicLib.o \
|
||||
Common/FileShare.o \
|
||||
Common/HashTable.o \
|
||||
Common/IMAPServer.o \
|
||||
Common/IO.o \
|
||||
Common/LanguagePortability.o \
|
||||
Common/ObjectKey.o \
|
||||
Common/POP2Server.o \
|
||||
Common/POP3Server.o \
|
||||
Common/Process.o \
|
||||
Common/Session.o \
|
||||
Common/Threads.o \
|
||||
Common/md5.o \
|
||||
Common/str_utils.o
|
||||
|
||||
RFC_OBJS = \
|
||||
RFC/AliasExpand.o \
|
||||
RFC/MIMEBodyPart.o \
|
||||
RFC/MIMEPartial.o \
|
||||
RFC/RFCBodyPart.o \
|
||||
RFC/RFCEnvelope.o \
|
||||
RFC/RFCFormat.o \
|
||||
RFC/RFCMailBox.o \
|
||||
RFC/RFCMailValues.o \
|
||||
RFC/RFCMessage.o \
|
||||
RFC/RFCMIME.o \
|
||||
RFC/RFCTransport.o \
|
||||
RFC/SunV3.o \
|
||||
RFC/V3BodyPart.o
|
||||
|
||||
OBJS = $(COMMON_OBJS) $(RFC_OBJS)
|
||||
|
||||
#include <Library.tmpl>
|
||||
@@ -1,54 +0,0 @@
|
||||
XCOMM $TOG: Imakefile /main/8 1998/08/05 13:25:32 mgreess $
|
||||
#define DoNormalLib YES
|
||||
#define DoSharedLib NO
|
||||
#define DoDebugLib NO
|
||||
#define DoProfileLib NO
|
||||
#define LibName DtMail
|
||||
#define LibHeaders NO
|
||||
#define LibCreate NO
|
||||
|
||||
#define CplusplusSource YES
|
||||
DEPEND_DEFINES = $(CXXDEPENDINCLUDES) $(DEPENDDEFINES)
|
||||
|
||||
#include <Threads.tmpl>
|
||||
|
||||
INCLUDES = -I. -I../Common -I../../include -I../../include/utils \
|
||||
-I$(CDELIBSRC) $(STD_INCLUDES) $(TIRPCINC)
|
||||
|
||||
#if HasVFork
|
||||
VFORK_DEFINES = -DHAS_VFORK
|
||||
#else
|
||||
VFORK_DEFINES =
|
||||
#endif
|
||||
|
||||
#ifndef DtMailDefines
|
||||
# define DtMailDefines
|
||||
#endif
|
||||
DEFINES = -DTTLOCK_OFF $(VFORK_DEFINES) DtMailDefines
|
||||
|
||||
SRCS = \
|
||||
AliasExpand.C MIMEBodyPart.C \
|
||||
MIMEPartial.C RFCBodyPart.C \
|
||||
RFCEnvelope.C RFCFormat.C \
|
||||
RFCMIME.C RFCMailBox.C \
|
||||
RFCMailValues.C RFCMessage.C \
|
||||
RFCTransport.C SunV3.C \
|
||||
V3BodyPart.C
|
||||
|
||||
/*
|
||||
* NOTE: All changes here must be mirrored in ../Imakefile's RFC_OBJS
|
||||
*/
|
||||
OBJS = \
|
||||
AliasExpand.o MIMEBodyPart.o \
|
||||
MIMEPartial.o RFCBodyPart.o \
|
||||
RFCEnvelope.o RFCFormat.o \
|
||||
RFCMailBox.o RFCMailValues.o \
|
||||
RFCMessage.o RFCMIME.o \
|
||||
RFCTransport.o SunV3.o \
|
||||
V3BodyPart.o
|
||||
|
||||
#include <Library.tmpl>
|
||||
|
||||
SubdirLibraryRule($(OBJS))
|
||||
|
||||
DependTarget()
|
||||
Reference in New Issue
Block a user