aboutsummaryrefslogtreecommitdiffstats
path: root/makeenv.1
blob: 61481e67e6c7a89ff3d13ae3cafd6b92c508bc95 (plain) (blame)
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
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
.TH MAKEENV 1 MAKEENV
.SH NAME
makeenv - Run make(1) with environment loaded from .makeenv
.SH SYNPOSIS
.B makeenv
.RI [ arguments "] ..."
.SH DESCRIPTION
The
.B makeenv
utility opens the file
.I .makeenv
if it exists in the current working directory and scans it
for options, macros, and targets to specify along with the
provided
.I arguments
when it executes
.BR make (1).
Any macro listed in
.I .makeenv
is also put in the environment.
.PP
After loading
.I .makeenv
and adding populating the environment,
.B makeenv
will inspect it's environment,
.B makeenv
itself is affected by the environment variables, which
also are
.BR make (1)
macros; this if you need a specific implementation of
.BR make (1)
for a project, it can be specified in the
.I .makeenv
file.
.PP
When executng
.BR make (1),
.B makeenv
may reorder the
.IR arguments ,
and will put any option listed in
.I .makeenv
at the beginning, any macro listed in
.I .makeenv
before the macros in the
.IR arguments ,
and any target  listed in
.I .makeenv
before the targets in the
.IR arguments .
.PP
.B makeenv
is designed to be usable in place of
.BR make (1),
that is, the user can create add the
.B alias
.I makeenv=make
in his shell, without any adverse affect.
.B makeenv
will pass on it's arguments as is to
.BR make (1)
(or whichever utility is specified in the environment
variable
.I MAKEENV_MAKE
or the environment variable
.IR MAKE )
without validation or modifications, if the
.B .makeenv
does not exist.
.SH OPTIONS
The
.BR makeenv
utility passes it's options to the
.BR make (1)
utility and do not act on any of the it self, however
in order to properly interleave options and operands
specified in the
.I .makeenv
file, it have to understand which options take an argument
and which do not. By default, the
.BR makeenv
utility only understands the options specified by POSIX,
and the argumented option
.B -W
(vendor options), as well as long options that start with
two dashes
.RB (--)
provided that the same command line argument contains an
equals sign
.RB ( = ).
The user can modify the environment
variables to modify how the
.BR makeenv
utility understands the options. See the section
.B ENVIRONMENT VARIABLES
for more information. The current version only support
options that consist of a dash
.RB ( - )
followed by any other character and options that start
with two dashes
.RB ( -- ),
followed by at least one character, but may not contain
an equals sign
.RB ( = ),
as these are treated as delimiters between long options
and their associated argument.
.BR 
.SH STDIN
Not used.
.SH INPUT FILES
None.
.SH ENVIRONMENT VARIABLES
The following environment variables affect the execution of
.BR makeenv :
.TP
.I PATH
Default.
.TP
.IR MAKEENV_MAKE ", " MAKE
The command that shall be invoked by the utility.
The environment variable
.I MAKEENV_MAKE
has precedence over
.IR MAKE;
.I MAKE
is only used if
.I MAKEENV_MAKE
is not defined. If neither is defined, the default value
.B make
is used.
.TP
.I MAKEENV_OPTS_NO_ARG
List of options that
.B makeenv
shall interpret as
.BR make (1)
options that do not have any argument.
(Default is
.BR eiknpqrSst ,
meaning the options
.BR -e ,
.BR -i ,
.BR -k ,
.BR -n ,
.BR -p ,
.BR -q ,
.BR -r ,
.BR -S ,
.BR -s ,
and
.BR -t .)
.TP
.I MAKEENV_OPTS_ARG
List of options that
.B makeenv
shall interpret as
.BR make (1)
options that have an argument.
(Default is
.BR fW ,
meaning the options
.B -f
and
.BR -W .)
.TP
.I MAKEENV_OPTS_OPT_ATTACHED_ARG
List of options that
.B makeenv
shall interpret as
.BR make (1)
options that have an argument only if
there are additional characters after
the option character in the same
command line argument. (Default is
the empty string, meaning no options.)
.TP
.I MAKEENV_OPTS_OPT_ARG
List of options that
.B makeenv
shall interpret as
.BR make (1)
options that have an argument if there
are additional characters after
the option character in the same
command line argument or if argument is
followed directly by another argument
which does not start with a dash
.RB ( - ).
(Default is
the empty string, meaning no options.)
.TP
.I MAKEENV_LONG_OPTS_NO_ARG
Space-separated list of long options that
.B makeenv
shall interpret as
.BR make (1)
options that do not have any argument
unless it is followed directly by an
equals sign
.RB ( = )
in the same command line argument.
Options that do not start with two dashes
.RB ( -- )
are silently ignored. (Default is the
empty string, meaning no options.)
.TP
.I MAKEENV_LONG_OPTS_ARG
Space-separated list of long options that
.B makeenv
shall interpret as
.BR make (1)
options that have an argument that must
either be specified in the next command
line argument or after an
equals sign
.RB ( = )
the shall directly follow the option
string in the same command line argument.
Options that do not start with two dashes
.RB ( -- )
are silently ignored. (Default is the
empty string, meaning no options.)
.TP
.I MAKEENV_LONG_OPTS_OPT_ARG
Space-separated list of long options that
.B makeenv
shall interpret as
.BR make (1)
options that have an argument if it is
the option string is is directly followed
by equals sign
.RB ( = )
in the same command line argument or if
argument is followed directly by another
argument which does not start with a dash
.RB ( - ).
Options that do not start with two dashes
.RB ( -- )
are silently ignored. (Default is the
empty string, meaning no options.)
.PP
Any macro listed in
.I .makeenv
is loaded into the environment before the utility inspects
the environement.
.SH ASYNCHRONOUS EVENTS
Default.
.SH STDOUT
Not used.
.SH STDERR
The standard error is used only for diagnostic messages.
.SH OUTPUT FILES
None.
.SH EXTENDED DESCRIPTION
None.
.SH EXIT STATUS
If the
.BR make (1)
utility is invoked, the exit status of
.B makeenv
is the exit status of the
.BR make (1);
utility otherwise, the
.B makeenv
utility exits with one of the following values:
.TP
125
An error occurred in the
.B makeenv
utility.
.TP
126
The
.BR make (1)
utility was found but could not be invoked.
.TP
127
The
.BR make (1)
utility could not be found.
.SH CONSEQUENCES OF ERRORS
Default.
.SH FUTURE DIRECTIONS
None.
.SH SEE ALSO
.BR makeenv (5),
.BR make (1)