home *** CD-ROM | disk | FTP | other *** search
/ ARM Club 3 / TheARMClub_PDCD3.iso / hensa / programming / desk / examples / Desk / Examples / Error / TemplateMF
Encoding:
Text File  |  1997-05-20  |  382 b   |  26 lines

  1.  
  2.  
  3. Librarys    =                    \
  4.             C:Desk.o.Debug.stderr        \
  5.             C:Desk.o.Desk$(LibSuffix)    \
  6.             C:o.Stubs            \
  7.  
  8. Target        =    !RunImage
  9.  
  10.  
  11. VPATH = @.^
  12.  
  13. .SUFFIXES:    .o .s .c .c++
  14.  
  15. $(Target):    $(ObjectFiles) $(Librarys)
  16.     Link    -aif $(LinkExtra) -o $@ $(ObjectFiles) $(Librarys)
  17.  
  18. .s.o:
  19.     objasm    -from $< -to $@
  20.  
  21. .c.o:
  22.     cc    -c $(CCExtra) -fahi -depend !Depend -throwback -I,C: -o $@ $<
  23.  
  24.  
  25. # Dynamic dependencies:
  26.