home *** CD-ROM | disk | FTP | other *** search
/ AmigActive 13 / AACD13.ISO / AACD / Resources / System / BoingBag1 / Contributions / Workbench / RexxArpLib3p6 / src / makefile < prev    next >
Makefile  |  1998-06-21  |  2KB  |  96 lines

  1. ### makefile
  2. #
  3. #   DESCRIPTION:
  4. #   ===========
  5. #
  6. #    This is the makefile for an AmigaREXX ARP support library.
  7. #    This version is written for Aztec C. It is based on the example
  8. #    library by Jim Mackraz who got some stuff from Neil Katin, and
  9. #    rxexample.library by Bill Hawes.
  10. #    All changes and additions by me.
  11. #
  12. #   AUTHOR/DATE:  W.G.J. Langeveld, November 1987.
  13. #   ============
  14. #
  15. #    Modified for SAS C 6.5
  16. #
  17. #   AUTHOR/DATE:  Joanne Dow, Jun 1998.
  18. #   ============
  19. #
  20. ###
  21.  
  22. All:           rexxarplib.library
  23.  
  24. rexxarplib.library:  disp.o dispatch.o filreq.o simp.o env.o screens.o \
  25.                         createhost.o util.o rxhtable.o syswbscr.o      \
  26.                         message.o whfunctions.o whhtable.o areapolydraw.o \
  27.                         filelist.o drawiff.o allocrastport.o listreq.o memory.o \
  28.                         libinit.o
  29.                      Slink with ral.lnk verbose
  30.                      slink from rexxarplib.library to libs:rexxarplib.library nodebug noicons
  31. # rtag.o
  32. #                    copy rexxarplib.library libs:
  33.  
  34. allocrastport.o: allocrastport.c
  35.                sc allocrastport.c
  36.  
  37. areapolydraw.o: areapolydraw.c areapolydraw.h
  38.                sc areapolydraw.c
  39.  
  40. createhost.o:  createhost.c rexxarplib.h
  41.                sc createhost.c
  42.  
  43. dispatch.o:    dispatch.c rexxarplib.h
  44.                sc dispatch.c
  45.  
  46. drawiff.o:     drawiff.c
  47.                sc drawiff.c
  48.  
  49. env.o:         env.c rexxarplib.h
  50.                sc env.c
  51.  
  52. filelist.o:    filelist.c rexxarplib.h
  53.                sc filelist.c
  54.  
  55. filreq.o:      filreq.c rexxarplib.h
  56.                sc filreq.c
  57.  
  58. listreq.o:     listreq.c rexxarplib.h
  59.                sc listreq.c
  60.  
  61. memory.o:      memory.c
  62.                sc memory.c
  63.  
  64. message.o:     message.c
  65.                sc message.c
  66.  
  67. rxhtable.o:    rxhtable.c
  68.                sc rxhtable.c
  69.  
  70. screens.o:     screens.c rexxarplib.h
  71.                sc screens.c
  72.  
  73. simp.o:        simp.c rexxarplib.h
  74.                sc simp.c
  75.  
  76. syswbscr.o:    syswbscr.c
  77.                sc syswbscr.c
  78.  
  79. util.o:        util.c
  80.                sc util.c
  81.  
  82. whfunctions.o: whfunctions.c rexxarplib.h
  83.                sc whfunctions.c
  84.  
  85. whhtable.o:    whhtable.c
  86.                sc whhtable.c
  87.  
  88. disp.o:        disp.asm
  89.                asm disp.asm
  90.  
  91. #rtag.o:        rtag.asm
  92. #               as rtag.asm
  93.  
  94. libinit.o:        libinit.c
  95.                 sc define=ONE_GLOBAL_SECTION libinit
  96.