home *** CD-ROM | disk | FTP | other *** search
/ ARM Club 1 / ARM_CLUB_CD.iso / contents / apps / languages / progs / shell / Other / !ShellEG / Makefile < prev    next >
Encoding:
Makefile  |  1994-07-07  |  1.1 KB  |  56 lines

  1. #
  2.  
  3. CC        =    cc
  4. LINK        =    DRLink -debimage
  5.  
  6. CCFlags        =    -c $(CCDebug) -depend !Depend -throwback -I,C:
  7. LinkFlags    =    -aif $(LinkDebug)
  8.  
  9. Librarys    =    C:Shell.o.ShellLib    \
  10.             DeskLib:o.MenusLib    \
  11.             DeskLib:o.ErrorLib    \
  12.             DeskLib:o.SaveLib    \
  13.             DeskLib:o.DeskLib    \
  14.             C:o.Stubs        \
  15.  
  16. Target        =    !RunImage
  17.  
  18. ObjectFiles    =    o.Main
  19.  
  20. # path(s) to source files:
  21. VPATH = @.^ @
  22.  
  23.  
  24. # Don't alter anything below this...
  25.  
  26. .SUFFIXES:    .o .c
  27.  
  28. $(Target):    $(ObjectFiles) $(Librarys) MakeFile
  29.     $(LINK) $(LinkFlags) -o $@ $(ObjectFiles) $(Librarys)
  30.  
  31. .c.o:
  32.     $(CC) $(ccFlags) -o $@ $<
  33.  
  34. # Dynamic dependencies:
  35. o.Main:    c.Main
  36. o.Main:    Desklib:h.Error
  37. o.Main:    C:h.kernel
  38. o.Main:    Desklib:h.Core
  39. o.Main:    C:Shell.h.RectSave
  40. o.Main:    C:Shell.h.Shell
  41. o.Main:    DeskLib:h.Wimp
  42. o.Main:    DeskLib:h.Coord
  43. o.Main:    DeskLib:h.LinkList
  44. o.Main:    C:Shell.h.TextRect
  45. o.Main:    C:Shell.h.Printf
  46. o.Main:    C:Shell.h.Array
  47. o.Main:    C:Shell.h.FontLabel
  48. o.Main:    C:Shell.h.Label
  49. o.Main:    C:Shell.h.BlockRct
  50. o.Main:    C:Shell.h.Extra
  51. o.Main:    DeskLib:h.GFX
  52. o.Main:    C:Shell.h.BarGraph
  53. o.Main:    C:Shell.h.PlainRect
  54. o.Main:    C:Shell.h.Shell
  55. o.Main:    C:Shell.h.BarIcon
  56.