home *** CD-ROM | disk | FTP | other *** search
/ Fish 'n' More 2 / fishmore-publicdomainlibraryvol.ii1991xetec.iso / dirs / keymacro_398.lzh / KeyMacro / MakeFile < prev    next >
Makefile  |  1990-11-01  |  575b  |  25 lines

  1. CFLAGS            = -hi KeyMacro.SYM -wnu -so
  2.  
  3. OBJS1            = KeyMacro.o KeySupport.o MRArpFile.o
  4. OBJS2            = KeyMacro-Handler.o KeySupport.o
  5.  
  6. all:            KeyMacro.SYM KeyMacro KeyMacro-Handler Null-Handler
  7.  
  8. KeyMacro:        $(OBJS1)
  9.             LN +q -m -o KeyMacro rstart.o gads.o $(OBJS1) -Larp -Lc
  10.  
  11. KeyMacro-Handler:    $(OBJS2)
  12.             LN +q -m $(OBJS2) -Lc
  13.  
  14. Null-Handler:        Null-Handler.o
  15.             LN +q -m Null-Handler.o
  16.  
  17. KeyMacro.o:        KeyMacro.c
  18.             CC $(CFLAGS) -m0b KeyMacro.c
  19.  
  20. Null-Handler.o:        Null-Handler.c
  21.             CC -so -wnu -mmscd0b -r4 Null-Handler.c
  22.  
  23. KeyMacro.SYM:        PreInclude.c
  24.             CC -ho KeyMacro.SYM PreInclude.c
  25.