forked from envmodules/modules
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile.inc.in
139 lines (107 loc) · 3.32 KB
/
Makefile.inc.in
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
# 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@
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@
# also install compatibility C version
compatversion := @compatversion@
EXEEXT := @EXEEXT@
# 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@
setdotmodulespath := @setdotmodulespath@
docinstall := @docinstall@
vimaddons := @vimaddons@
examplemodulefiles := @examplemodulefiles@
# where to install init config files
initconfin := @initconfin@
# able to build documentation?
builddoc := @builddoc@
# able to handle compat as git worktree?
gitworktree := @gitworktree@
# able to use manpath cmd to get currently set manpath
usemanpath := @usemanpath@
# pager setup
pager := @pager@
pageropts := @pageropts@
# defaut verbosity
verbosity := @verbosity@
# color setup
color := @color@
darkbgcolors := @darkbgcolors@
lightbgcolors := @lightbgcolors@
termbg := @termbg@
# automated modules handling
autohandling := @autohandling@
# implicitly define requirement on module load/module unload modules
implicitrequirement := @implicitrequirement@
# in depth avail search
availindepth := @availindepth@
# 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@
# 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@
# 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@