home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / World_Of_Computer_Software-02-385-Vol-1of3.iso / x / xibm.zip / apa16 / Imakefile < prev    next >
Makefile  |  1992-02-05  |  2KB  |  90 lines

  1. /* "@(#)Imakefile    3.1 88/09/22 09:30:13" */
  2. #include <Server.tmpl>
  3.  
  4. SRCS =         apa16BBlt.c \
  5.         apa16Info.c \
  6.         apa16IO.c \
  7.         apa16Hdwr.c \
  8.         apa16OSD.c \
  9.         apa16Font.c \
  10.         apa16Save.c \
  11.         apa16Text.c \
  12.         apa16Curs.c \
  13.         apa16FlSp.c \
  14.         apa16GC.c \
  15.         apa16IGBlt.c \
  16.         apa16Line.c \
  17.         apa16PGBlt.c \
  18.         apa16PntA.c \
  19.         apa16PntW.c \
  20.         apa16RArea.c \
  21.         apa16Tile.c \
  22.         apa16Win.c \
  23.         mfbwait.c \
  24.         apa16PolyPt.c \
  25.         apa16FillArc.c 
  26.  
  27. OBJS =        apa16BBlt.o \
  28.         apa16Info.o \
  29.         apa16IO.o \
  30.         apa16Hdwr.o \
  31.         apa16OSD.o \
  32.         apa16Curs.o \
  33.         apa16FlSp.o \
  34.         apa16Font.o \
  35.         apa16GC.o \
  36.         apa16IGBlt.o \
  37.         apa16Line.o \
  38.         apa16PGBlt.o \
  39.         apa16PntA.o \
  40.         apa16PntW.o \
  41.         apa16RArea.o \
  42.         apa16Save.o \
  43.         apa16Text.o \
  44.         apa16Tile.o \
  45.         apa16Win.o \
  46.         mfbwait.o \
  47.         apa16PolyPt.o \
  48.         fs.o \
  49.         apa16FillArc.o 
  50.  
  51. INCLUDES = -I. -I../OPERATING_SYSTEM -I$(TOP)/server/ddx/mi -I$(TOP)/server/ddx/mfb -I$(TOP)/server/include -I$(INCLUDESRC) -I../common -I$(TOP)/fonts/include
  52.  
  53. #if DebugServer && ProfileServer
  54. DebuggedAndProfiledLibraryObjectRule()
  55. #else
  56. # if DebugServer
  57. DebuggedLibraryObjectRule()
  58. # else
  59. #  if ProfileServer
  60. ProfiledLibraryObjectRule()
  61. #  else
  62. NormalLibraryObjectRule()
  63. #  endif
  64. # endif
  65. #endif
  66.  
  67. NormalRelocatableTarget(apa16,$(OBJS))
  68.  
  69. #if ProfileServer
  70. ProfiledRelocatableTarget(apa16,$(OBJS))
  71. #endif
  72. #if DebugServer
  73. DebuggedRelocatableTarget(apa16,$(OBJS))
  74. #endif
  75.  
  76. DependTarget()
  77.  
  78. LintLibraryTarget(apa16,$(SRCS))
  79. NormalLintTarget($(SRCS))
  80.  
  81. #ifdef AIXArchitecture
  82. fs.o: fs.spp
  83.     $(CPP) fs.spp | as -o fs.o
  84. #else
  85. fs.o: fs.spp
  86.     $(CPP) fs.spp | as -R -o fs.o
  87. #endif
  88.  
  89.  
  90.