home *** CD-ROM | disk | FTP | other *** search
/ RISC DISC 1 / RISC_DISC_1.iso / pd_share / code / desklib / Libraries / Drag / Makefile
Encoding:
Makefile  |  1994-04-01  |  223 b   |  15 lines

  1. # Project: DragLib
  2.  
  3. .SUFFIXES:   .c .o
  4. CC           = cc
  5. CCflags      = -c -IDeskLib:,C: $(x_cflags)
  6.  
  7.  
  8. Files =      o.SetHandler o.DragInit
  9.  
  10. DragLib:     $(Files)
  11.              $(do)
  12.  
  13. .c.o:;       $(CC) $(CCflags) $< -o $@
  14.  
  15.