home *** CD-ROM | disk | FTP | other *** search
/ The Fred Fish Collection 1.5 / ffcollection-1-5-1992-11.iso / ff_disks / 300-399 / ff355.lzh / RexxHostLib / MakeFile < prev    next >
Makefile  |  1990-06-12  |  732b  |  29 lines

  1. ################################################################
  2. #
  3. #    MakeFile to build rexxhost.library & FancyDemo.
  4. #
  5. #    Aztec 'C' 5.0 is required to compile the library,
  6. #    FancyDemo will probably compile with any other
  7. #    compiler.
  8. #
  9. ################################################################
  10.  
  11. CFLAGS            = -so -wu -hi RexxHost.SYM
  12. OBJS            = LibStartup.o LibMain.o RexxHostLib.o StringAsm.o
  13.  
  14. all:            RexxHost.SYM rexxhost.library FancyDemo
  15.  
  16. rexxhost.library:    $(OBJS)
  17.             LN -o rexxhost.library $(OBJS) -Lc
  18.             Protect rexxhost.library -e
  19.             Copy rexxhost.library LIBS: CLONE
  20.  
  21. FancyDemo:        FancyDemo.o
  22.             LN FancyDemo.o -Lc
  23.  
  24. FancyDemo.o:        FancyDemo.c
  25.             CC FancyDemo.c
  26.  
  27. RexxHost.SYM:        PreInclude.c
  28.             CC -ho RexxHost.SYM PreInclude.c
  29.