home *** CD-ROM | disk | FTP | other *** search
/ ARM Club 3 / TheARMClub_PDCD3.iso / hensa / programming / desk / examples / Desk / Examples / Error / !Debug / Makefile < prev    next >
Encoding:
Makefile  |  1997-05-20  |  685 b   |  47 lines

  1. # This makefile made by Makatic2
  2.  
  3.  
  4. CCExtra=-DDesk_DEBUG
  5. LibSuffix=_D
  6.  
  7.  
  8. ObjectFiles    =        \
  9.             o.Main    \
  10.  
  11.  
  12. ProjectName        =    !Debug
  13.  
  14.  
  15.  
  16. Librarys    =                    \
  17.             C:Desk.o.Debug.stderr        \
  18.             C:Desk.o.Desk$(LibSuffix)    \
  19.             C:o.Stubs            \
  20.  
  21. Target        =    !RunImage
  22.  
  23.  
  24. VPATH = @.^
  25.  
  26. .SUFFIXES:    .o .s .c .c++
  27.  
  28. $(Target):    $(ObjectFiles) $(Librarys)
  29.     Link    -aif $(LinkExtra) -o $@ $(ObjectFiles) $(Librarys)
  30.  
  31. .s.o:
  32.     objasm    -from $< -to $@
  33.  
  34. .c.o:
  35.     cc    -c $(CCExtra) -fahi -depend !Depend -throwback -I,C: -o $@ $<
  36.  
  37.  
  38. # Dynamic dependencies:
  39. o.Main:    ^.c.Main
  40. o.Main:    C:Desk.h.Error2
  41. o.Main:    C:Desk.h.Error
  42. o.Main:    C:Desk.h.Core
  43. o.Main:    C:h.kernel
  44. o.Main:    C:Desk.h.JumpRaw
  45. o.Main:    C:Desk.h.DeskMem
  46. o.Main:    C:Desk.h.Debug
  47.