home *** CD-ROM | disk | FTP | other *** search
/ RISC DISC 1 / RISC_DISC_1.iso / pd_share / code / desklib / Examples / !TestApp / Makefile < prev    next >
Encoding:
Makefile  |  1993-07-14  |  381 b   |  18 lines

  1. # Project:   TestApp
  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.TestApp o.Error
  10. Libs          = C: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.