home *** CD-ROM | disk | FTP | other *** search
/ RISC DISC 1 / RISC_DISC_1.iso / pd_share / code / desklib / Libraries / File / Makefile
Encoding:
Makefile  |  1994-05-29  |  383 b   |  16 lines

  1. # Project: FileLib
  2.  
  3. .SUFFIXES:   .c .s .o
  4. CC           = cc
  5. CCflags      = -c -IDeskLib:,C: $(x_cflags)
  6. ObjAsmflags  = -Stamp -NoCache -CloseExec -Quit $(x_aflags)
  7.  
  8. Files        = o.Delete o.Exists o.FileOps o.IsDir o.LoadTo o.SetType o.Size o.Date
  9.  
  10.  
  11. FileLib:     $(Files)
  12.              $(do)
  13.  
  14. .c.o:;       $(CC) $(CCflags) $< -o $@
  15. .s.o:;       objasm $(ObjAsmflags) -from $< -to $@
  16.