home *** CD-ROM | disk | FTP | other *** search
/ RISC DISC 1 / RISC_DISC_1.iso / pd_share / code / desklib / Libraries / Save / Makefile
Encoding:
Makefile  |  1994-04-24  |  208 b   |  14 lines

  1. # Project:    SaveLib
  2.  
  3. .SUFFIXES:    .c .o
  4. CC            = cc
  5. CCFlags       = -c -IC: $(x_cflags)
  6.  
  7. Files         = o.Save
  8.  
  9.  
  10. SaveLib:      $(Files)
  11.               $(do)
  12.  
  13. .c.o:;        $(CC) $(CCflags) $< -o $@
  14.