home *** CD-ROM | disk | FTP | other *** search
/ The Datafile PD-CD 2 / DATAFILE_PDCD2.iso / utilities2 / desklib / Libraries / Icon / Makefile
Encoding:
Makefile  |  1993-07-14  |  524 b   |  17 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.ClickWait o.Deselect o.DisposeInd o.ForceWR \
  8.              o.GetDouble o.GetInteger o.GetSelect o.GetShade o.GetText \
  9.              o.LoseCaret o.printf o.Select o.SetCaret o.SetDouble \
  10.              o.SetInteger o.SetRadios o.SetSelect o.SetShade o.SetText \
  11.              o.Shade o.Slider o.StartDrag o.Unshade o.WhichRadio
  12.  
  13. IconLib:   $(Files)
  14.            $(do)
  15.  
  16. .c.o:;     $(CC) $(CCflags) $< -o $@
  17.