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

  1. # Project:   IconLib
  2.  
  3. .SUFFIXES: .c .o
  4. CC         = cc
  5. CCflags    = -c -IDeskLib:,C: $(x_cflags)
  6.  
  7. Files      = o.BarIcon o.BarIconUse o.ClickWait o.Deselect o.DisposeInd \
  8.              o.FileIcon o.ForceWR o.GetBgCol o.GetDouble o.GetFgCol \
  9.              o.GetInteger o.GetSelect o.GetShade o.GetText o.GetTextPtr \
  10.              o.LoseCaret o.printf o.ScreenPos o.SelctGroup o.Select \
  11.              o.SetCaret o.SetCol o.SetDouble o.SetInteger o.SetRadios \
  12.              o.SetSelect o.SetShade o.SetText o.SetTextRJ o.Shade \
  13.              o.ShadeGroup o.Slider o.StartDrag o.Unshade o.WhichRadio
  14.  
  15. IconLib:   $(Files)
  16.            $(do)
  17.  
  18. .c.o:;     $(CC) $(CCflags) $< -o $@
  19.