home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / World_Of_Computer_Software-02-385-Vol-1of3.iso / x / xibm.zip / AIX / Imakefile < prev    next >
Makefile  |  1992-02-11  |  816b  |  47 lines

  1. XCOMM $Id: Imakefile,v 5.1 1992/02/12 00:21:36 jfc Exp $
  2. #include <Server.tmpl>
  3.  
  4. #ifdef AIXrt
  5. OSDEP_SRC = aixRTOS.c
  6. OSDEP_OBJ = aixRTOS.o
  7. #else
  8. OSDEP_SRC = aixPS2OS.s
  9. OSDEP_OBJ = aixPS2OS.o
  10. #endif
  11.  
  12. SRCS =        aixCursor.c    \
  13.         aixEvents.c    \
  14.         aixInit.c    \
  15.         aixKeybd.c    \
  16.         aixMouse.c    \
  17.         hftQueue.c    \
  18.         hftUtils.c    \
  19.         $(OSDEP_SRC)
  20.  
  21. LIBOBJS =    aixCursor.o    \
  22.         aixEvents.o    \
  23.         aixInit.o    \
  24.         aixKeybd.o    \
  25.         aixMouse.o    \
  26.         hftQueue.o    \
  27.         hftUtils.o    \
  28.         $(OSDEP_OBJ)
  29.  
  30. OBJS =        $(OTHROBJS) $(LIBOBJS)
  31.  
  32. STD_DEFINES = ServerDefines -DXTESTEXT1
  33.  
  34. #if ibmSpecialMalloc
  35. DEFINES = -DIBM_SPECIAL_MALLOC
  36. #else
  37. DEFINES =
  38. #endif
  39.  
  40. INCLUDES = -I. -I../ -I../../../include -I$(INCLUDESRC) -I../common -I../../../../extensions/include -I../../../os
  41.  
  42. SubdirLibraryRule($(OBJS))
  43. NormalLibraryObjectRule()
  44. NormalLintTarget($(SRCS))
  45.  
  46. DependTarget()
  47.