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

  1. # Project: CoordLib 
  2.  
  3. .SUFFIXES:   .c .o
  4. CC           = cc
  5. CCflags      = -c -IDeskLib:,C: $(x_cflags)
  6.  
  7.  
  8. Files =      o.PtInRect o.RectCntain o.RectsOvlap o.RectUnion o.WOrigin \
  9.              o.Convert1 o.Convert2 o.Convert3 o.Convert4
  10.  
  11. CoordLib:    $(Files)
  12.              $(do)
  13.  
  14. .c.o:;       $(CC) $(CCflags) $< -o $@
  15.  
  16.