home *** CD-ROM | disk | FTP | other *** search
/ ARM Club 3 / TheARMClub_PDCD3.iso / hensa / projects / makatic_2 / Makatic / Docs / Examples / Large / TemplateMF
Encoding:
Text File  |  1996-01-26  |  666 b   |  42 lines

  1.  
  2.  
  3. Librarys    =            \
  4.             C:o.c++lib    \
  5.             C:o.Stubs    \
  6.  
  7. Target        =    !RunImage
  8.  
  9. ASMFlags    =    $(ASMExtra) -Stamp -NoCache -CloseExec -Quit -throwback
  10. CCFlags        =    $(CCExtra) -fahi -depend !Depend -throwback -I,@.^,C:
  11. CPPFlags    =    $(CPPExtra) -depend !Depend -throwback -I,@.^,C:
  12. LinkFlags    =    $(LinkExtra)
  13.  
  14. ASM        =    objasm $(ASMFlags)
  15. CC        =    cc -c $(CCFlags)
  16. CPP        =    c++ -c $(CPPFlags)
  17. LINK        =    Link -aif -c++ $(LinkFlags)
  18.  
  19.  
  20.  
  21. # Don't alter anything below this...
  22.  
  23.  
  24. VPATH = @.^
  25.  
  26. .SUFFIXES:    .o .s .c .c++
  27.  
  28. $(Target):    $(ObjectFiles) $(Librarys)
  29.     $(LINK) -o $@ $(ObjectFiles) $(Librarys)
  30.  
  31. .s.o:
  32.     $(ASM) -from $< -to $@
  33.  
  34. .c.o:
  35.     $(CC) -o $@ $<
  36.  
  37. .c++.o:
  38.     $(CPP) -o $@ $<
  39.  
  40.  
  41. # Dynamic dependencies:
  42.