home *** CD-ROM | disk | FTP | other *** search
/ Programmer 7500 / MAX_PROGRAMMERS.iso / CLIPPER / MISC / MAKEMAKE.ZIP / MAKEMAK.CFG < prev    next >
Encoding:
Text File  |  1988-02-21  |  996 b   |  40 lines

  1. "Sample configuration file for use with makemak"
  2. Search the sutil library
  3. libs = sutil
  4.  
  5. These are usable compile and link options.
  6. c_opts = /Zi /Od /c
  7. l_opts = /NOE
  8.  
  9. example compile definition
  10. cdefs = /DLINT_ARGS
  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. Note that case does'nt matter.
  23.  
  24. Since the rest of the lines in this sample file do not start with a keyword,
  25. we can show what the program's defaults are without affecting any definitions.
  26.  
  27. *  CC = cl
  28. *  C_OPTS =  /Zi /Od /c
  29. #  CDEFS = 
  30. 4  MC =    masm
  31. 5  M_OPTS = /Zi
  32. 6  MDEFS = 
  33. 7  LC = link
  34. 8  L_OPTS = /CO
  35. 9  LMAP = NUL
  36. *  LIBS = 
  37.  
  38. Remember that the definitions in the MAKEMAK.CFG file will override both the
  39. defaults and the values of the LINK, CL and MASM environment variables.
  40.