home *** CD-ROM | disk | FTP | other *** search
/ ARM Club 3 / TheARMClub_PDCD3.iso / hensa / programming / desklib / examples / DeskLib / Examples / Widget5 / !Widget5 / Makefile < prev    next >
Encoding:
Makefile  |  1995-06-03  |  538 b   |  19 lines

  1. # Project:   Widget5
  2.  
  3. .SUFFIXES:    .c .o
  4. CC            = cc
  5. CCFlags       = -c -fussy -throwback -IC: -Ff
  6. LinkFlags     = -o $@
  7. SqueezeFlags  = -f -v
  8.  
  9. Files         = o.Error o.Widget5 o.SpriteWin o.Create o.Misc o.LoadSave o.ATrans o.CheckBanks o.ProcessWin o.Configure o.Process o.Filter o.GraphWin o.MixWin o.GreyEdWin
  10.  
  11. Libs          = C:o.HackLib C:o.DeskLib C:o.Stubs
  12.  
  13.  
  14. !RunImage:    $(Files) 
  15.               link $(LinkFlags) $(Files) $(Libs)
  16.               squeeze $(SqueezeFlags) !RunImage
  17.  
  18. .c.o:;        $(CC) $(CCflags) $< -o $@
  19.