home *** CD-ROM | disk | FTP | other *** search
/ ARM Club 3 / TheARMClub_PDCD3.iso / hensa / programming / desklib / examples / DeskLib / Examples / !SpriteTst / Makefile < prev    next >
Makefile  |  1994-04-07  |  392b  |  18 lines

  1. # Project:   SpriteTest
  2.  
  3. .SUFFIXES:    .c .o
  4. CC            = cc
  5. CCFlags       = -c -throwback -IC: -Ff
  6. LinkFlags     = -o $@
  7. SqueezeFlags  = -f -v
  8.  
  9. Files         = o.!RunImage o.Error
  10. Libs          = DeskLib:o.DeskLib C:o.Stubs
  11.  
  12.  
  13. !RunImage:    $(Files) 
  14.               link $(LinkFlags) $(Files) $(Libs)
  15.               squeeze $(SqueezeFlags) !RunImage
  16.  
  17. .c.o:;        $(CC) $(CCflags) $< -o $@
  18.