home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / World_Of_Computer_Software-02-385-Vol-1of3.iso / x / xprism.zip / xprism / src / xprism3 / Imakefile < prev    next >
Makefile  |  1992-09-30  |  1KB  |  72 lines

  1. #include <xprism.def>
  2.  
  3. IMAKEFILE = xprog
  4.  
  5. TOOLBOX =\
  6.     XPRISM
  7.  
  8. HEADERS =\
  9.     form_info.h \
  10.     scrolls.h \
  11.     xprism3.h
  12.  
  13. SRCS =\
  14.     form_info.c \
  15.     form_init.c \
  16.     main_util.c \
  17.     persp.c \
  18.     run_answer.c \
  19.     run_opts3.c \
  20.     run_output.c \
  21.     run_ovlay.c \
  22.     run_xprism3.c \
  23.     xp3_main.c
  24.  
  25. OBJS =\
  26.     form_info.o \
  27.     form_init.o \
  28.     main_util.o \
  29.     persp.o \
  30.     run_answer.o \
  31.     run_opts3.o \
  32.     run_output.o \
  33.     run_ovlay.o \
  34.     run_xprism3.o \
  35.     xp3_main.o
  36.  
  37. YSRCS =
  38.  
  39. LSRCS =
  40.  
  41. PROGRAM_NAME =\
  42.     xprism3
  43.  
  44. LDLIBS = \
  45.     $(X_TOOLBOX_LIBRARIES) \
  46.     $(X_LOCAL_LIBRARIES) \
  47.         $(TOOLBOX_LIBRARIES) \
  48.         $(LOCAL_LIBRARIES) \
  49.         $(EXTRA_LIBRARIES) \
  50.         $(SYS_LIBRARIES) \
  51.     $(X_LIBRARIES) 
  52.  
  53. DEPLIBS = \
  54.     $(X_TOOLBOX_DEP_LIBRARIES) \
  55.     $(X_LOCAL_DEP_LIBRARIES) \
  56.     $(TOOLBOX_DEP_LIBRARIES) \
  57.     $(LOCAL_DEP_LIBRARIES)
  58.  
  59.  
  60. /* the following field are intentionally left commented.  Use the flags       */
  61. /* if you wish to override the defaults assigned in the system configuration  */
  62. /* files.   Other fields may also be overridden such as the LOCAL_LIBRARIES   */
  63. /* and EXTRA_LIBRARIES                                                        */
  64.  
  65. /* CDEBUGFLAGS = */
  66.  
  67. ALLLIBDIRS = $(LOADERLIBPREFIX)$(TB_NAME)/lib $(LOADERLIBPREFIX)$(KLIBDIR) $(LOADERLIBPREFIX)$(FORLIBDIR)
  68. STD_INCLUDES = -I$(TB_NAME)/include
  69.  
  70.  
  71. #include <Prog.template>
  72.