home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD2.mdf / c / tools / make / tcmak / makemak.cfg < prev    next >
Text File  |  1988-06-21  |  977b  |  39 lines

  1. "Sample configuration file for use with makemak"
  2.  
  3.  
  4. These are usable compile and link options.
  5. C_OPTS = -I..\include -ms -c
  6. L_OPTS = ..\lib\c0s
  7. LIBS = ..\lib\emu ..\lib\maths ..\lib\cs
  8.  
  9. example compile definition
  10. CDEFS = 
  11.  
  12. The following line will disable the default m_opts of /Zi
  13. M_OPTS =
  14.  
  15. #And the next definition will be ignored because copts is not one of 
  16. #macros defined to this program (c_opts is)
  17. #COPTS = /AL /Ox
  18.  
  19. #The next line redefines the l_opts defined earlier
  20. #L_OPTS = /CO
  21.  
  22.  
  23. Since the rest of the lines in this sample file do not start with a keyword,
  24. we can show what the program's defaults are without affecting any definitions.
  25.  
  26. *  CC = cl
  27. *  C_OPTS =  /Zi /Od /c
  28. #  CDEFS = 
  29. 4  MC =    masm
  30. 5  M_OPTS = /Zi
  31. 6  MDEFS = 
  32. 7  LC = link
  33. 8  L_OPTS = /CO
  34. 9  LMAP = NUL
  35. *  LIBS = 
  36.  
  37. Remember that the definitions in the MAKEMAK.CFG file will override both the
  38. defaults and the values of the LINK, CL and MASM environment variables.
  39.