Begin removal of some Imakefiles, and other no longer useful cruft
This commit will not completely remove all Imake files, specifically those for sections that have not been completed yet. Also, the databases dir has been moved to databases-delete-later until we have everything building and installed properly.
This commit is contained in:
@@ -1,91 +0,0 @@
|
||||
XCOMM $XConsortium: Imakefile /main/1 1996/04/21 19:20:55 drk $
|
||||
#define DoNormalLib NormalLibDtTerm
|
||||
#define DoSharedLib SharedLibDtTerm
|
||||
#define DoDebugLib DebugLibDtTerm
|
||||
#define DoProfileLib ProfileLibDtTerm
|
||||
#define LibName DtTerm
|
||||
#define SoRev SODTTERMREV
|
||||
#define LibHeaders NO
|
||||
|
||||
#include <Threads.tmpl>
|
||||
|
||||
#define IHaveSubdirs
|
||||
#define PassCDebugFlags 'CDEBUGFLAGS=$(CDEBUGFLAGS)'
|
||||
|
||||
SUBDIRS = TermPrim Term TermView
|
||||
EXTRALIBRARYDEPS = TermPrim/DONE Term/DONE TermView/DONE
|
||||
|
||||
MakeSubdirs($(SUBDIRS))
|
||||
ForceSubdirs($(SUBDIRS))
|
||||
DependSubdirs($(SUBDIRS))
|
||||
|
||||
INCLUDES = -I. -I./TermPrim -I./Term -I./TermView
|
||||
|
||||
#ifdef SharedDtTermReqs
|
||||
REQUIREDLIBS = SharedDtTermReqs
|
||||
#endif
|
||||
|
||||
/* for openpty */
|
||||
#if defined(OpenBSDArchitecture)
|
||||
REQUIREDLIBS += -lutil
|
||||
#endif
|
||||
|
||||
TERMPRIM_OBJS = \
|
||||
TermPrim/TermPrim.o \
|
||||
TermPrim/TermPrimAction.o \
|
||||
TermPrim/TermPrimBuffer.o \
|
||||
TermPrim/TermPrimBufferWc.o \
|
||||
TermPrim/TermPrimCursor.o \
|
||||
TermPrim/TermPrimDebug.o \
|
||||
TermPrim/TermPrimFunction.o \
|
||||
TermPrim/TermPrimGetPty.o \
|
||||
TermPrim/TermPrimLineDraw.o \
|
||||
TermPrim/TermPrimParse.o \
|
||||
TermPrim/TermPrimParseTable.o \
|
||||
TermPrim/TermPrimParser.o \
|
||||
TermPrim/TermPrimPendingText.o \
|
||||
TermPrim/TermPrimRender.o \
|
||||
TermPrim/TermPrimRenderMb.o \
|
||||
TermPrim/TermPrimRenderFont.o \
|
||||
TermPrim/TermPrimRenderFontSet.o \
|
||||
TermPrim/TermPrimRenderLineDraw.o \
|
||||
TermPrim/TermPrimRepType.o \
|
||||
TermPrim/TermPrimScroll.o \
|
||||
TermPrim/TermPrimSelect.o \
|
||||
TermPrim/TermPrimSetPty.o \
|
||||
TermPrim/TermPrimSubproc.o \
|
||||
TermPrim/TermPrimUtil.o \
|
||||
TermPrim/TermPrimVersion.o \
|
||||
TermPrim/TermPrimWMProtocols.o
|
||||
|
||||
TERM_OBJS = \
|
||||
Term/Term.o \
|
||||
Term/TermAction.o \
|
||||
Term/TermBuffer.o \
|
||||
Term/TermColor.o \
|
||||
Term/TermEnhance.o \
|
||||
Term/TermFunction.o \
|
||||
Term/TermFunctionKey.o \
|
||||
Term/TermLineData.o \
|
||||
Term/TermParse.o \
|
||||
Term/TermParseTable.o \
|
||||
Term/TermVersion.o
|
||||
|
||||
TERMVIEW_OBJS = \
|
||||
TermView/TermView.o \
|
||||
TermView/TermViewMenu.o \
|
||||
TermView/TermViewGlobalDialog.o \
|
||||
TermView/TermViewTerminalDialog.o
|
||||
|
||||
#if defined(HasUtempterLibrary) && HasUtempterLibrary
|
||||
REQUIREDLIBS += -lutempter
|
||||
#else
|
||||
TERMPRIM_OBJS += TermPrim/TermPrimSetUtmp.o
|
||||
#endif
|
||||
|
||||
OBJS = \
|
||||
$(TERMPRIM_OBJS) \
|
||||
$(TERM_OBJS) \
|
||||
$(TERMVIEW_OBJS)
|
||||
|
||||
#include <Library.tmpl>
|
||||
@@ -1,65 +0,0 @@
|
||||
XCOMM $XConsortium: Imakefile /main/1 1996/04/21 19:15:07 drk $
|
||||
#define DoNormalLib NormalLibDtTerm
|
||||
#define DoSharedLib SharedLibDtTerm
|
||||
#define DoDebugLib DebugLibDtTerm
|
||||
#define DoProfileLib ProfileLibDtTerm
|
||||
#define LibName DtTerm
|
||||
#define SoRev SODTTERMREV
|
||||
#define IncSubdir Dt
|
||||
#define LibCreate NO
|
||||
|
||||
#include <Threads.tmpl>
|
||||
|
||||
DEPEND_DEFINES = $(DEPENDDEFINES)
|
||||
DEFINES =
|
||||
INCLUDES = -I. -I../TermPrim
|
||||
|
||||
LINTLIBS = $(LINTXLIB) $(LINTXTOOL) $(LINTXM)
|
||||
|
||||
UTILDIR = ../util
|
||||
|
||||
TermLineData.c: TermLineData.data $(UTILDIR)/lineToData.c
|
||||
RemoveFiles($@ lineToData)
|
||||
LinkRule(lineToData,$(CFLAGS),$(UTILDIR)/lineToData.c,$(LDLIBS))
|
||||
./lineToData -p _DtTerm -f TermLineData.data > $@
|
||||
RemoveFile(./lineToData)
|
||||
|
||||
includes:: TermLineData.c
|
||||
|
||||
clean::
|
||||
RemoveFile(TermLineData.c)
|
||||
|
||||
|
||||
HEADERS = Term.h TermP.h
|
||||
|
||||
SRCS = \
|
||||
Term.c \
|
||||
TermAction.c \
|
||||
TermBuffer.c \
|
||||
TermColor.c \
|
||||
TermEnhance.c \
|
||||
TermFunction.c \
|
||||
TermFunctionKey.c \
|
||||
TermLineData.c \
|
||||
TermParse.c \
|
||||
TermParseTable.c \
|
||||
TermVersion.c
|
||||
|
||||
OBJS = \
|
||||
Term.o \
|
||||
TermAction.o \
|
||||
TermBuffer.o \
|
||||
TermColor.o \
|
||||
TermEnhance.o \
|
||||
TermFunction.o \
|
||||
TermFunctionKey.o \
|
||||
TermLineData.o \
|
||||
TermParse.o \
|
||||
TermParseTable.o \
|
||||
TermVersion.o
|
||||
|
||||
#include <Library.tmpl>
|
||||
|
||||
SubdirLibraryRule($(OBJS))
|
||||
|
||||
DependTarget()
|
||||
@@ -1,120 +0,0 @@
|
||||
XCOMM $TOG: Imakefile /main/3 1998/03/16 14:41:32 mgreess $
|
||||
#define DoNormalLib NormalLibDtTerm
|
||||
#define DoSharedLib SharedLibDtTerm
|
||||
#define DoDebugLib DebugLibDtTerm
|
||||
#define DoProfileLib ProfileLibDtTerm
|
||||
#define LibName DtTerm
|
||||
#define SoRev SODTTERMREV
|
||||
#define IncSubdir Dt
|
||||
#define LibCreate NO
|
||||
|
||||
#include <Threads.tmpl>
|
||||
|
||||
DEPEND_DEFINES = $(DEPENDDEFINES)
|
||||
DEFINES = $(ARCHITECTURE_DEFINES)
|
||||
|
||||
INCLUDES = -I.
|
||||
|
||||
HEADERS = TermPrim.h TermPrimP.h
|
||||
|
||||
SRCS = \
|
||||
TermPrim.c \
|
||||
TermPrimAction.c \
|
||||
TermPrimBuffer.c \
|
||||
TermPrimBufferWc.c \
|
||||
TermPrimCursor.c \
|
||||
TermPrimDebug.c \
|
||||
TermPrimFunction.c \
|
||||
TermPrimGetPty.c \
|
||||
TermPrimLineDraw.c \
|
||||
TermPrimParse.c \
|
||||
TermPrimParseTable.c \
|
||||
TermPrimParser.c \
|
||||
TermPrimPendingText.c \
|
||||
TermPrimRender.c \
|
||||
TermPrimRenderMb.c \
|
||||
TermPrimRenderFont.c \
|
||||
TermPrimRenderFontSet.c \
|
||||
TermPrimRenderLineDraw.c \
|
||||
TermPrimRepType.c \
|
||||
TermPrimScroll.c \
|
||||
TermPrimSelect.c \
|
||||
TermPrimSetPty.c \
|
||||
TermPrimSubproc.c \
|
||||
TermPrimUtil.c \
|
||||
TermPrimVersion.c \
|
||||
TermPrimWMProtocols.c
|
||||
|
||||
OBJS = \
|
||||
TermPrim.o \
|
||||
TermPrimAction.o \
|
||||
TermPrimBuffer.o \
|
||||
TermPrimBufferWc.o \
|
||||
TermPrimCursor.o \
|
||||
TermPrimDebug.o \
|
||||
TermPrimFunction.o \
|
||||
TermPrimGetPty.o \
|
||||
TermPrimLineDraw.o \
|
||||
TermPrimParse.o \
|
||||
TermPrimParseTable.o \
|
||||
TermPrimParser.o \
|
||||
TermPrimPendingText.o \
|
||||
TermPrimRender.o \
|
||||
TermPrimRenderMb.o \
|
||||
TermPrimRenderFont.o \
|
||||
TermPrimRenderFontSet.o \
|
||||
TermPrimRenderLineDraw.o \
|
||||
TermPrimRepType.o \
|
||||
TermPrimScroll.o \
|
||||
TermPrimSelect.o \
|
||||
TermPrimSetPty.o \
|
||||
TermPrimSubproc.o \
|
||||
TermPrimUtil.o \
|
||||
TermPrimVersion.o \
|
||||
TermPrimWMProtocols.o
|
||||
|
||||
#if defined(HasUtempterLibrary) && HasUtempterLibrary
|
||||
EXTRA_DEFINES = -DHAS_UTEMPTER_LIBRARY
|
||||
#else
|
||||
SRCS += TermPrimSetUtmp.c
|
||||
OBJS += TermPrimSetUtmp.o
|
||||
#endif
|
||||
|
||||
#include <Library.tmpl>
|
||||
|
||||
#if defined(HasPtsDriver) && HasPtsDriver
|
||||
LinkFile(TermPrimGetPty.c,TermPrimGetPty-pts.c)
|
||||
#else
|
||||
/* These should be cleaned up. Test SVR4Architecture? */
|
||||
#ifdef AlphaArchitecture
|
||||
LinkFile(TermPrimGetPty.c,TermPrimGetPty-bsd.c)
|
||||
#endif
|
||||
|
||||
#ifdef HPArchitecture
|
||||
# if OSMajorVersion > 9
|
||||
LinkFile(TermPrimGetPty.c,TermPrimGetPty-svr4.c)
|
||||
# else
|
||||
LinkFile(TermPrimGetPty.c,TermPrimGetPty-bsd.c)
|
||||
# endif
|
||||
#endif
|
||||
|
||||
#ifdef IBMArchitecture
|
||||
LinkFile(TermPrimGetPty.c,TermPrimGetPty-clone.c)
|
||||
#endif
|
||||
|
||||
#ifdef LinuxArchitecture
|
||||
LinkFile(TermPrimGetPty.c,TermPrimGetPty-svr4.c)
|
||||
#endif
|
||||
|
||||
#ifdef SunArchitecture
|
||||
LinkFile(TermPrimGetPty.c,TermPrimGetPty-svr4.c)
|
||||
#endif
|
||||
|
||||
#ifdef BSDArchitecture
|
||||
LinkFile(TermPrimGetPty.c,TermPrimGetPty-bsd.c)
|
||||
#endif
|
||||
#endif
|
||||
|
||||
SubdirLibraryRule($(OBJS))
|
||||
|
||||
DependTarget()
|
||||
@@ -1,32 +0,0 @@
|
||||
XCOMM $XConsortium: Imakefile /main/1 1996/04/21 19:20:11 drk $
|
||||
#define DoNormalLib NormalLibDtTerm
|
||||
#define DoSharedLib SharedLibDtTerm
|
||||
#define DoDebugLib DebugLibDtTerm
|
||||
#define DoProfileLib ProfileLibDtTerm
|
||||
#define LibName DtTerm
|
||||
#define SoRev SODTTERMREV
|
||||
#define LibHeaders NO
|
||||
#define LibCreate NO
|
||||
|
||||
#include <Threads.tmpl>
|
||||
|
||||
DEPEND_DEFINES = $(DEPENDDEFINES)
|
||||
INCLUDES = -I. -I../TermPrim -I../Term
|
||||
|
||||
SRCS = \
|
||||
TermView.c \
|
||||
TermViewMenu.c \
|
||||
TermViewGlobalDialog.c \
|
||||
TermViewTerminalDialog.c
|
||||
|
||||
OBJS = \
|
||||
TermView.o \
|
||||
TermViewMenu.o \
|
||||
TermViewGlobalDialog.o \
|
||||
TermViewTerminalDialog.o
|
||||
|
||||
#include <Library.tmpl>
|
||||
|
||||
SubdirLibraryRule($(OBJS))
|
||||
|
||||
DependTarget()
|
||||
Reference in New Issue
Block a user