home *** CD-ROM | disk | FTP | other *** search
/ Frozen Fish 1: Amiga / FrozenFish-Apr94.iso / bbs / alib / d3xx / d325 / rexxhostlib.lha / RexxHostLib / MakeFile < prev    next >
Makefile  |  1990-02-27  |  887b  |  37 lines

  1. #############################################################################
  2. #
  3. #    This makefile builds the rexxhost.library, the fancy demo and
  4. #    the Aztec linker library.
  5. #
  6. #############################################################################
  7.  
  8. all: rexxhost.library FancyDemo rexxhost.lib
  9.  
  10. rexxhost.library:    RexxHostLib.o LibMain.o LibStartup.o Interface.o
  11.             LN -o rexxhost.library RexxHostLib.o LibMain.o LibStartup.o Interface.o -Lrexx -Lc32
  12.             Copy rexxhost.library LIBS:
  13.  
  14. RexxHostLib.o:        RexxHostLib.c
  15.             CC RexxHostLib.c +L
  16.  
  17. LibMain.o:        LibMain.c
  18.             CC LibMain.c +L
  19.  
  20. LibStartup.o:        LibStartup.asm
  21.             AS LibStartup.asm
  22.  
  23. Interface.o:        Interface.asm
  24.             AS Interface.asm
  25.  
  26. FancyDemo:        FancyDemo.o rexxhost.lib
  27.             LN FancyDemo.o -Lrexxhost -Lc32
  28.  
  29. FancyDemo.o:        FancyDemo.c
  30.             CC FancyDemo.c +L
  31.  
  32. Link.o:            Link.asm
  33.             AS Link.asm
  34.  
  35. rexxhost.lib:        Link.o
  36.             LB rexxhost.lib Link.o
  37.