home *** CD-ROM | disk | FTP | other *** search
/ ARM Club 3 / TheARMClub_PDCD3.iso / hensa / misc / shell_1 / Shell / Other / !ShellDemo / Makefile < prev    next >
Encoding:
Makefile  |  1994-12-06  |  1.4 KB  |  66 lines

  1. CC        =    cc
  2. #LINK        =    DRLink -debimage
  3. LINK        =    Link
  4.  
  5. CCFlags        =    -c -fahi $(CCExtra) -depend !Depend -throwback -I,C:
  6. LinkFlags    =    -aif $(LinkExtra)
  7.  
  8.  
  9. # If you use EasyC, change 'C:Shell.o.ShellLib' in the next line to 'C:Shell.o.ShellEC' 
  10. Librarys    =    C:Shell.o.ShellLib    \
  11.             DeskLib:o.DeskLib    \
  12.             C:o.Stubs        \
  13.  
  14. Target        =    !RunImage
  15.  
  16. ObjectFiles    =    o.Main    \
  17.             o.Error    \
  18.  
  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.Error:    c.Error
  36. o.Error:    DeskLib:h.Error
  37. o.Error:    C:h.kernel
  38. o.Error:    DeskLib:h.Core
  39. o.Error:    DeskLib:h.WimpSWIs
  40. o.Error:    DeskLib:h.Wimp
  41. o.Error:    DeskLib:h.Event
  42. o.Main:    c.Main
  43. o.Main:    Desklib:h.Error
  44. o.Main:    C:h.kernel
  45. o.Main:    Desklib:h.Core
  46. o.Main:    Desklib:h.WimpSWIs
  47. o.Main:    Desklib:h.Wimp
  48. o.Main:    C:Shell.h.RectSave
  49. o.Main:    C:Shell.h.Shell
  50. o.Main:    DeskLib:h.Coord
  51. o.Main:    DeskLib:h.LinkList
  52. o.Main:    C:Shell.h.TextRect
  53. o.Main:    C:Shell.h.Printf
  54. o.Main:    C:Shell.h.Array
  55. o.Main:    C:Shell.h.FontLabel
  56. o.Main:    C:Shell.h.Label
  57. o.Main:    C:Shell.h.BlockRct
  58. o.Main:    C:Shell.h.Extra
  59. o.Main:    DeskLib:h.GFX
  60. o.Main:    DeskLib:h.ColourTran
  61. o.Main:    C:Shell.h.BarGraph
  62. o.Main:    C:Shell.h.PlainRect
  63. o.Main:    C:Shell.h.Shell
  64. o.Main:    C:Shell.h.BarIcon
  65. o.Main:    C:Shell.h.SpriteRect
  66.