home *** CD-ROM | disk | FTP | other *** search
/ InfoMagic Source Code 1993 July / THE_SOURCE_CODE_CD_ROM.iso / X / mit / extensions / server / PEX / ospex / Imakefile next >
Encoding:
Makefile  |  1991-07-24  |  2.3 KB  |  76 lines

  1. XCOMM
  2. XCOMM $XConsortium: Imakefile,v 5.3 91/07/24 16:50:27 rws Exp $
  3. XCOMM
  4. XCOMM 
  5. XCOMM Copyright 1989, 1990, 1991 by Sun Microsystems, Inc. and the X Consortium
  6. XCOMM 
  7. XCOMM             All Rights Reserved
  8. XCOMM 
  9. XCOMM Permission to use, copy, modify, and distribute this software and its 
  10. XCOMM documentation for any purpose and without fee is hereby granted, 
  11. XCOMM provided that the above copyright notice appear in all copies and that
  12. XCOMM both that copyright notice and this permission notice appear in 
  13. XCOMM supporting documentation, and that the names of Sun Microsystems,
  14. XCOMM the X Consortium, and MIT not be used in advertising or publicity 
  15. XCOMM pertaining to distribution of the software without specific, written 
  16. XCOMM prior permission.  
  17. XCOMM 
  18. XCOMM SUN MICROSYSTEMS DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, 
  19. XCOMM INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
  20. XCOMM EVENT SHALL SUN MICROSYSTEMS BE LIABLE FOR ANY SPECIAL, INDIRECT OR
  21. XCOMM CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF
  22. XCOMM USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
  23. XCOMM OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
  24. XCOMM PERFORMANCE OF THIS SOFTWARE.
  25.  
  26. #include <Server.tmpl>
  27.  
  28. #ifndef PassCDebugFlags
  29. #define PassCDebugFlags
  30. #endif
  31.  
  32. #ifndef PexDipexCDebugFlags
  33. #define PexDipexCDebugFlags ServerCDebugFlags
  34. #endif
  35.  
  36. .SUFFIXES:  .o  .a
  37.  
  38. RDR_STUBS = -DRENDER_CMDS
  39. ST_STUBS = -DSTORE_CMDS
  40.  
  41.  CDEBUGFLAGS = PexDipexCDebugFlags
  42.  FONTDEFINES = -DPEX_DEFAULT_FONTPATH=\"$(FONTDIR)/PEX\"
  43.      DEFINES = ExtensionDefines PexDipexDefines $(FONTDEFINES)
  44.  
  45.     LINTLIBS =    ../../../../server/dix/llib-ldix.ln \
  46.         ../../../../server/os/4.2bsd/llib-los.ln \
  47.         ../ddpex/mi/level4/llib-ldp4.ln \
  48.         ../ddpex/mi/shared/llib-ldps.ln \
  49.         ../dipex/swap/llib-ldsw.ln \
  50.         ../dipex/objects/llib-lobj.ln
  51.  
  52.    PEXSRVINC = ../include
  53.   PEXINCLUDE = ../../../include/PEX
  54. DDPEXINCLUDE = ../ddpex/mi/include
  55.     INCLUDES = -I.     \
  56.     -I$(PEXSRVINC)     \
  57.     -I$(PEXINCLUDE)    \
  58.     -I$(INCLUDESRC) \
  59.     -I$(SERVERSRC)/include \
  60.     -I$(DDPEXINCLUDE)
  61.  
  62.  
  63. SRCS = osPexFont.c
  64.  
  65. OBJS = osPexFont.o
  66.  
  67. PEX_OS_LIBNAME = libospex.a
  68.  
  69. NormalLibraryObjectRule()
  70. NormalLibraryTarget(ospex,$(OBJS))
  71. LintLibraryTarget(osp,$(SRCS))
  72. NormalLintTarget($(SRCS))
  73.  
  74. DependTarget()
  75.  
  76.