home *** CD-ROM | disk | FTP | other *** search
/ APDL Public Domain 1 / APDL_PD1A.iso / program / c / desklib / libraries / Libraries / Icon / Makefile
Encoding:
Makefile  |  1995-01-14  |  735 b   |  20 lines

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