home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / World_Of_Computer_Software-02-385-Vol-1of3.iso / x / xtrapv33.zip / extensions / lib / xtrap / Imakefile < prev    next >
Makefile  |  1992-09-14  |  3KB  |  87 lines

  1. /*****************************************************************************
  2. Copyright 1987, 1988, 1989, 1990, 1991 by Digital Equipment Corp., Maynard, MA
  3.  
  4. Permission to use, copy, modify, and distribute this software and its 
  5. documentation for any purpose and without fee is hereby granted, 
  6. provided that the above copyright notice appear in all copies and that
  7. both that copyright notice and this permission notice appear in 
  8. supporting documentation, and that the name of Digital not be
  9. used in advertising or publicity pertaining to distribution of the
  10. software without specific, written prior permission.  
  11.  
  12. DIGITAL DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING
  13. ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL
  14. DIGITAL BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR
  15. ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
  16. WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
  17. ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
  18. SOFTWARE.
  19.  
  20. *****************************************************************************/
  21. #define DoNormalLib NormalLibXTrap
  22. #define DoSharedLib SharedLibXTrap
  23. #define DoDebugLib DebugLibXTrap
  24. #define DoProfileLib ProfileLibXTrap
  25. #include <Library.tmpl>
  26. #ifdef RsArchitecture
  27. REQUIREDLIBS = $(EXTENSIONSRC)/lib/libXext.a $(XLIBSRC)/libX11.a \
  28.     $(TOOLKITSRC)/libXt.a
  29. #endif
  30.     TOP = TOPDIR/../mit/
  31.     STD_DEFINES = LibraryDefines ExtensionDefines
  32. /**/# Xt used first because the headers should first come from the Xt
  33. /**/# binding.
  34. STD_INCLUDES= -I$(INCLUDESRC)/Xt
  35. INCLUDES = -I$(TOP) -I$(INCLUDESRC) -I$(EXTENSIONSRC)/include \
  36.        -I$(EXTENSIONSRC)/include/xtrap -I$(XLIBSRC) \
  37.            -I$(TOOLKITSRC) -I$(FONTSRC)/include
  38. SRCS =  XETrapInit.c XEConTxt.c XEWrappers.c XEDsptch.c \
  39.         XECallBcks.c XEPrInfo.c XERqsts.c chparse.c \
  40.         XEStrMap.c sleep.c XEKeybCtrl.c 
  41. OBJS =  XETrapInit.o XEConTxt.o XEWrappers.o XEDsptch.o \
  42.         XECallBcks.o XEPrInfo.o XERqsts.o chparse.o \
  43.         XEStrMap.o sleep.o XEKeybCtrl.o 
  44. LOBJS = XETrapInit.ln XEConTxt.ln XEWrappers.ln XEDsptch.ln \
  45.         XECallBcks.ln XEPrInfo.ln XERqsts.ln chparse.ln \
  46.         XEStrMap.ln sleep.ln XEKeybCtrl.ln 
  47.  
  48. XTRAPREF = $(TOP)/../../xtrapcode/
  49.  
  50.  
  51.        LINTLIBS = $(LINTXLIB) $(LINTXEXT) $(LINTXTOOL)
  52.  
  53. #if DoSharedLib
  54.       SOXTRAPREV = SharedXTrapRev
  55. #if DoNormalLib
  56. SharedLibraryTarget(XTrap,$(SOXTRAPREV),$(OBJS),shared,..)
  57. #else
  58. SharedLibraryTarget(XTrap,$(SOXTRAPREV),$(OBJS),.,.)
  59. #endif
  60. InstallSharedLibrary(XTrap,$(SOXTRAPREV),$(USRLIBDIR))
  61. #endif
  62. #if DoNormalLib
  63. NormalLibraryTarget(XTrap,$(OBJS))
  64. InstallLibrary(XTrap,$(USRLIBDIR))
  65. #endif
  66. #if DoProfileLib
  67. ProfiledLibraryTarget(XTrap,$(OBJS))
  68. InstallLibrary(XTrap_p,$(USRLIBDIR))
  69. #endif
  70. #if DoDebugLib
  71. DebuggedLibraryTarget(XTrap,$(OBJS))
  72. #endif
  73.  
  74. LintLibraryTarget(XTrap,$(SRCS))
  75. InstallLintLibrary(XTrap,$(LINTLIBDIR))
  76.  
  77.  
  78. links:
  79.     $(RM) Imakefile; \
  80.     $(LN) $(XTRAPREF)/lib_xtrap.imake_r5 Imakefile; \
  81.     for i in $(SRCS); do (set -x; $(RM) $$i; $(LN) $(XTRAPREF)/$$i .); done
  82.  
  83. DependTarget()
  84.  
  85. NormalLintTarget($(SRCS))
  86.  
  87.