1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181
|
# Definitions shared across the Makefiles of this project
# run ./configure to generate Makefile.inc
# set default installation paths
baseprefix := @baseprefix@
prefix := @prefix@
bindir := @bindir@
libdir := @libdir@
libexecdir := @libexecdir@
etcdir := @etcdir@
initdir := @initdir@
modulefilesdir := @modulefilesdir@
datarootdir := @datarootdir@
mandir := @mandir@
docdir := @docdir@
vimdatadir := @vimdatadir@
emacsdatadir := @emacsdatadir@
nagelfardatadir := @nagelfardatadir@
moduleshome := @moduleshome@
# versioning mode installation
versioning := @versioning@
# Modules version
VERSION := @VERSION@
# modulepaths and modulefiles to enable in default config
modulepath := @modulepath@
loadedmodules := @loadedmodules@
# silent shell debug support
silentshdbgsupport := @silentshdbgsupport@
# define or not shell startup file to initialize module
setshellstartup := @setshellstartup@
# runtime quarantine mechanism
quarantinesupport := @quarantinesupport@
quarantinevars := @quarantinevars@
# install Modules Tcl extension library
libtclenvmodules := @libtclenvmodules@
SHLIB_SUFFIX := @SHLIB_SUFFIX@
# multi library installation support
multilibsupport := @multilibsupport@
libdir64 := @libdir64@
libdir32 := @libdir32@
# enable or not some specific definition
setmanpath := @setmanpath@
appendmanpath := @appendmanpath@
setbinpath := @setbinpath@
appendbinpath := @appendbinpath@
setmodulespath := @setmodulespath@
docinstall := @docinstall@
vimaddons := @vimaddons@
emacsaddons := @emacsaddons@
examplemodulefiles := @examplemodulefiles@
# where to install init config files
initconfin := @initconfin@
# able to build documentation?
builddoc := @builddoc@
# able to use manpath cmd to get currently set manpath
usemanpath := @usemanpath@
# logger setup
loggedevents := @loggedevents@
logger := @logger@
loggeropts := @loggeropts@
# pager setup
pager := @pager@
pageropts := @pageropts@
# default verbosity
verbosity := @verbosity@
# color setup
color := @color@
darkbgcolors := @darkbgcolors@
lightbgcolors := @lightbgcolors@
termbg := @termbg@
# automated modules handling
autohandling := @autohandling@
conflictunload := @conflictunload@
requirevia := @requirevia@
# implicitly define requirement on module load/module unload modules
implicitrequirement := @implicitrequirement@
# in depth searches
availindepth := @availindepth@
spiderindepth := @spiderindepth@
# ignore superseding value for locked configuration options
lockedconfigs := @lockedconfigs@
# unload lastly or firstly loaded module matching
unloadmatchorder := @unloadmatchorder@
# implicitly set a default version for modules with none defined
implicitdefault := @implicitdefault@
# allow partial module version specification
extendeddefault := @extendeddefault@
# advanced version specification
advversspec := @advversspec@
# raise error if root name is already loaded
uniquenameloaded := @uniquenameloaded@
# cache file content evaluated with source command
sourcecache := @sourcecache@
# module name search matching style
searchmatch := @searchmatch@
# workaround for Tcsh history issue (#277)
wa277 := @wa277@
# case sensitiveness match
icase := @icase@
# ml command enablement
ml := @ml@
# install Windows-specific files
windowssupport := @windowssupport@
# days to be considered nearly-forbidden
nearlyforbiddendays := @nearlyforbiddendays@
# tag abbreviations and coloring properties
tagabbrev := @tagabbrev@
tagcolorname := @tagcolorname@
# error behaviors
stickypurge := @stickypurge@
abortonerror := @abortonerror@
# check version on magic cookie
mcookieversioncheck := @mcookieversioncheck@
# output configuration
availoutput := @availoutput@
availterseoutput := @availterseoutput@
listoutput := @listoutput@
listterseoutput := @listterseoutput@
spideroutput := @spideroutput@
spiderterseoutput := @spiderterseoutput@
# variant configuration
variantshortcut := @variantshortcut@
# editor
editor := @editor@
# shell completion location
bashcompletiondir := @bashcompletiondir@
fishcompletiondir := @fishcompletiondir@
zshcompletiondir := @zshcompletiondir@
# linter setup
nagelfaraddons := @nagelfaraddons@
tcllinter := @tcllinter@
tcllinteropts := @tcllinteropts@
# command location
TCLSH := @TCLSH@
PYTHON := @PYTHON@
SPHINXBUILD := @SPHINXBUILD@
PS := @PS@
BASENAME := @BASENAME@
# specific command option support
RMDIR_IGN_NON_EMPTY := @RMDIR_IGN_NON_EMPTY@
SED_ERE := @SED_ERE@
|