home *** CD-ROM | disk | FTP | other *** search
/ RISC DISC 1 / RISC_DISC_1.iso / pd_share / code / desklib / PopUps / Docs / ExampleSrc / Makefile < prev   
Encoding:
Makefile  |  1993-05-24  |  617 b   |  23 lines

  1. # PopUp Server
  2.  
  3. .SUFFIXES:   .c .o
  4. CC           = cc
  5. CCflags      = -c -throwback -Ff -IDeskLib:,C:
  6. LinkFlags    = -o $@
  7.  
  8. Libraries    = C:o.Stubs C:o.DeskLib
  9. Files        = o.Error o.HandlerTab o.Server o.Template o.Wimp
  10.  
  11.  
  12. # Add your own PopUp handlers into the project by adding their names
  13. # in the list below. You should not need to change the rest of the MakeFile
  14.  
  15. PopUps       = o._Magnify o._Print o._ProgInfo o._Report o._SaveAs o._WimpCol
  16.  
  17.  
  18. !RunImage:   $(Files) $(PopUps)
  19.              link $(LinkFlags) $(Files) $(PopUps) $(Libraries)
  20.              squeeze -v -f !RunImage
  21.  
  22. .c.o:;  $(CC) $(CCflags) $< -o $@
  23.