home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / xwplascr.zip / XWPL0208.ZIP / config.in < prev    next >
Text File  |  2002-02-23  |  4KB  |  137 lines

  1.  
  2. #
  3. # config.in:
  4. #       this is included from setup.in only (and thus
  5. #       indirectly by every makefile in this project).
  6. #
  7. #       The macros in this file replace the external
  8. #       environment variables which were required
  9. #       before V0.9.12.
  10. #
  11. #       The following variables MUST be set to match
  12. #       your system. After this, XWP should compile
  13. #       properly.
  14. #
  15. #       For details on these variables, see PROGREF.INF.
  16. #
  17. #       Note: You can still comment out everything in
  18. #       this file and define all these variables
  19. #       externally before calling nmake, since nmake
  20. #       converts the entire environment to macros on
  21. #       startup.
  22. #
  23.  
  24. # CVS DIRECTORY SETUP
  25. # -------------------
  26.  
  27. # CVS_WORK_ROOT: the root of your CVS tree
  28. # (the parent dir of "xworkplace" and "xwphelpers")
  29. !ifndef CVS_WORK_ROOT
  30. CVS_WORK_ROOT = D:\projects\R_cvs
  31. !endif
  32.  
  33. # XWPDIR: name of the directory this file resides in
  34. # (subdirectory of CVS_WORK_ROOT).
  35. # This will usually be xworkplace (the CVS repository
  36. # name), unless you chose a different name.
  37. !ifndef XWPDIR
  38. XWPDIR = xworkplace
  39. !endif
  40.  
  41. # XWPHELPERSDIR: name of the directory the xwphelpers
  42. # resides in (subdirectory of CVS_WORK_ROOT).
  43. # This will usually be xwphelpers (the CVS repository
  44. # name), unless you chose a different name.
  45. !ifndef XWPHELPERSDIR
  46. XWPHELPERSDIR = xwphelpers
  47. !endif
  48.  
  49. # INCLUDE AND LIB SETUP
  50. # ---------------------
  51.  
  52. # Starting with V0.9.12, we no longer use the default
  53. # INCLUDE and LIB paths. Instead, we specify all
  54. # directories directly on the command lines, so we
  55. # need to know where your toolkit and compiler things
  56. # are.
  57.  
  58. # TKBASE: the main Toolkit directory.
  59. # This must be the parent of the "h" and "lib"
  60. # directories with the include files and libraries.
  61. !ifdef TK3BASE
  62. TKBASE = $(TK3BASE)
  63. !else
  64. !ifndef TKBASE
  65. TKBASE = D:\develop\Toolkit45
  66. !endif
  67. !endif
  68.  
  69. # VACBASE: the main directory of your IBM
  70. # VisualAge C++ installation. Only 3.0.8 has
  71. # been tested so far.
  72. # This must be the parent of the "include" and "lib"
  73. # directories with the include files and libraries.
  74. !ifndef VACBASE
  75. VACBASE = D:\develop\IBMVAC
  76. !endif
  77.  
  78. # DDKBASE: your DDK "base" directory.
  79. # Not used by the regular makefiles, unless you
  80. # want to build XWorkplace Security.
  81. # DDKBASE = K:\libs\DDK\base
  82.  
  83. # SESBASE: your SES "base" directory.
  84. # Not used by the regular makefiles, unless you
  85. # want to build XWorkplace Security.
  86. # SESBASE = K:\libs\security
  87.  
  88. # XWPRUNNING: directory where your XWorkplace
  89. # binaries are installed... all the produced
  90. # files will be copied there.
  91. # This must exist.
  92. !ifndef XWPRUNNING
  93. XWPRUNNING = D:\TOOLS\WPS\XWorkplace
  94. !endif
  95.  
  96. # DEBUG CODE
  97. # ----------
  98.  
  99. # XWP_DEBUG: set to YES if you want debug code;
  100. # set to nothing if not.
  101.  
  102. # WARNING: Enabling debug code has side effects.
  103. # See PROGREF.INF for details.
  104.  
  105. # If XWP_DEBUG is set to anything, the following is enabled:
  106. #
  107. # -- setup.in will change the compiler flags to produce debug
  108. #    code. Otherwise, release code will be produced.
  109. #
  110. # -- __DEBUG__ will be #define'd in all source files.
  111. #    include\setup.h reacts to that and redefines a number of
  112. #    debugging macros.
  113. #
  114. # -- _Pmpf((...)) will be #define'd in the sources to produce
  115. #    debug messages. YOU MUST HAVE THE PMPRINTF DLLs on your
  116. #    LIBPATH then. See PROGREF.INF.
  117.  
  118. # XWP_DEBUG = YES
  119.  
  120. # MISCELLANEOUS
  121. # -------------
  122.  
  123. # XWP_UNLOCK_MODULES: should be set to YES to
  124. # automatically unlock files.
  125. # Set this to nothing to disable unlocking.
  126. XWP_UNLOCK_MODULES = YES
  127.  
  128. # XWP_LANG_CODE: language code of NLS resources
  129. # to compile. Presently only 001 for US English
  130. # exists.
  131. !ifndef XWP_LANG_CODE
  132. XWP_LANG_CODE = 001
  133. !endif
  134.  
  135.  
  136.  
  137.