make.h revision 138564
1243791Sdim/*
2243791Sdim * Copyright (c) 1988, 1989, 1990, 1993
3243791Sdim *	The Regents of the University of California.  All rights reserved.
4243791Sdim * Copyright (c) 1989 by Berkeley Softworks
5243791Sdim * All rights reserved.
6243791Sdim *
7243791Sdim * This code is derived from software contributed to Berkeley by
8243791Sdim * Adam de Boor.
9243791Sdim *
10243791Sdim * Redistribution and use in source and binary forms, with or without
11243791Sdim * modification, are permitted provided that the following conditions
12243791Sdim * are met:
13243791Sdim * 1. Redistributions of source code must retain the above copyright
14243791Sdim *    notice, this list of conditions and the following disclaimer.
15243791Sdim * 2. Redistributions in binary form must reproduce the above copyright
16243791Sdim *    notice, this list of conditions and the following disclaimer in the
17243791Sdim *    documentation and/or other materials provided with the distribution.
18243791Sdim * 3. All advertising materials mentioning features or use of this software
19243791Sdim *    must display the following acknowledgement:
20243791Sdim *	This product includes software developed by the University of
21243791Sdim *	California, Berkeley and its contributors.
22243791Sdim * 4. Neither the name of the University nor the names of its contributors
23243791Sdim *    may be used to endorse or promote products derived from this software
24243791Sdim *    without specific prior written permission.
25243791Sdim *
26243791Sdim * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
27243791Sdim * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
28243791Sdim * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
29243791Sdim * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
30243791Sdim * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
31251662Sdim * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
32243791Sdim * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
33243791Sdim * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
34249423Sdim * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
35249423Sdim * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
36243791Sdim * SUCH DAMAGE.
37243791Sdim *
38243791Sdim *	@(#)make.h	8.3 (Berkeley) 6/13/95
39243791Sdim * $FreeBSD: head/usr.bin/make/make.h 138564 2004-12-08 16:22:01Z harti $
40243791Sdim */
41243791Sdim
42263508Sdim/*-
43263508Sdim * make.h --
44243791Sdim *	The global definitions for pmake
45243791Sdim */
46243791Sdim
47243791Sdim#ifndef _MAKE_H_
48243791Sdim#define	_MAKE_H_
49243791Sdim
50243791Sdim#include <sys/types.h>
51243791Sdim#include <stdio.h>
52243791Sdim#include <string.h>
53243791Sdim#include <ctype.h>
54243791Sdim
55243791Sdim#include <stdlib.h>
56243791Sdim#include <unistd.h>
57249423Sdim#include "sprite.h"
58249423Sdim#include "lst.h"
59243791Sdim#include "config.h"
60243791Sdim#include "buf.h"
61243791Sdim
62243791Sdim/*-
63243791Sdim * The structure for an individual graph node. Each node has several
64243791Sdim * pieces of data associated with it.
65243791Sdim *	1) the name of the target it describes
66243791Sdim *	2) the location of the target file in the filesystem.
67243791Sdim *	3) the type of operator used to define its sources (qv. parse.c)
68243791Sdim *	4) whether it is involved in this invocation of make
69243791Sdim *	5) whether the target has been remade
70243791Sdim *	6) whether any of its children has been remade
71243791Sdim *	7) the number of its children that are, as yet, unmade
72243791Sdim *	8) its modification time
73243791Sdim *	9) the modification time of its youngest child (qv. make.c)
74243791Sdim *	10) a list of nodes for which this is a source
75249423Sdim *	11) a list of nodes on which this depends
76243791Sdim *	12) a list of nodes that depend on this, as gleaned from the
77243791Sdim *	    transformation rules.
78243791Sdim *	13) a list of nodes of the same name created by the :: operator
79243791Sdim *	14) a list of nodes that must be made (if they're made) before
80243791Sdim *	    this node can be, but that do no enter into the datedness of
81243791Sdim *	    this node.
82243791Sdim *	15) a list of nodes that must be made (if they're made) after
83243791Sdim *	    this node is, but that do not depend on this node, in the
84243791Sdim *	    normal sense.
85243791Sdim *	16) a Lst of ``local'' variables that are specific to this target
86243791Sdim *	   and this target only (qv. var.c [$@ $< $?, etc.])
87243791Sdim *	17) a Lst of strings that are commands to be given to a shell
88243791Sdim *	   to create this target.
89263508Sdim */
90263508Sdimtypedef struct GNode {
91263508Sdim    char            *name;     	/* The target's name */
92263508Sdim    char    	    *path;     	/* The full pathname of the file */
93243791Sdim    int             type;      	/* Its type (see the OP flags, below) */
94243791Sdim    int		    order;	/* Its wait weight */
95249423Sdim
96243791Sdim    Boolean         make;      	/* TRUE if this target needs to be remade */
97249423Sdim    enum {
98249423Sdim	UNMADE, BEINGMADE, MADE, UPTODATE, ERROR, ABORTED,
99249423Sdim	CYCLE, ENDCYCLE
100249423Sdim    }	    	    made;    	/* Set to reflect the state of processing
101249423Sdim				 * on this node:
102249423Sdim				 *  UNMADE - Not examined yet
103243791Sdim				 *  BEINGMADE - Target is already being made.
104243791Sdim				 *  	Indicates a cycle in the graph. (compat
105243791Sdim				 *  	mode only)
106243791Sdim				 *  MADE - Was out-of-date and has been made
107243791Sdim				 *  UPTODATE - Was already up-to-date
108243791Sdim				 *  ERROR - An error occured while it was being
109243791Sdim				 *  	made (used only in compat mode)
110263508Sdim				 *  ABORTED - The target was aborted due to
111243791Sdim				 *  	an error making an inferior (compat).
112243791Sdim				 *  CYCLE - Marked as potentially being part of
113263508Sdim				 *  	a graph cycle. If we come back to a
114263508Sdim				 *  	node marked this way, it is printed
115263508Sdim				 *  	and 'made' is changed to ENDCYCLE.
116243791Sdim				 *  ENDCYCLE - the cycle has been completely
117243791Sdim				 *  	printed. Go back and unmark all its
118243791Sdim				 *  	members.
119243791Sdim				 */
120243791Sdim    Boolean 	    childMade; 	/* TRUE if one of this target's children was
121243791Sdim				 * made */
122243791Sdim    int             unmade;    	/* The number of unmade children */
123243791Sdim
124243791Sdim    int             mtime;     	/* Its modification time */
125243791Sdim    int        	    cmtime;    	/* The modification time of its youngest
126243791Sdim				 * child */
127243791Sdim
128243791Sdim    Lst     	    *iParents;  /* Links to parents for which this is an
129243791Sdim				 * implied source, if any */
130243791Sdim    Lst		    *cohorts;  	/* Other nodes for the :: operator */
131243791Sdim    Lst	            *parents;   /* Nodes that depend on this one */
132243791Sdim    Lst	            *children;  /* Nodes on which this one depends */
133243791Sdim    Lst		    *successors;/* Nodes that must be made after this one */
134243791Sdim    Lst		    *preds;  	/* Nodes that must be made before this one */
135243791Sdim
136243791Sdim    Lst            *context;   /* The local variables */
137243791Sdim    Lst            *commands;  /* Creation commands */
138243791Sdim
139243791Sdim    /* current command executing in compat mode */
140243791Sdim    LstNode	   *compat_command;
141243791Sdim
142243791Sdim    struct _Suff    *suffix;	/* Suffix for the node (determined by
143263508Sdim				 * Suff_FindDeps and opaque to everyone
144263508Sdim				 * but the Suff module) */
145263508Sdim} GNode;
146243791Sdim
147243791Sdim
148243791Sdim/*
149243791Sdim * Definitions for handling #include specifications
150243791Sdim */
151243791Sdimtypedef struct {
152249423Sdim    char *str;
153249423Sdim    char *ptr;
154249423Sdim} PTR;
155243791Sdimtypedef struct IFile {
156243791Sdim    char            *fname;	    /* name of previous file */
157243791Sdim    int             lineno;	    /* saved line number */
158243791Sdim    FILE	    *F;		    /* the open stream */
159    PTR		    *p;	    	    /* the char pointer */
160} IFile;
161
162/*
163 * The OP_ constants are used when parsing a dependency line as a way of
164 * communicating to other parts of the program the way in which a target
165 * should be made. These constants are bitwise-OR'ed together and
166 * placed in the 'type' field of each node. Any node that has
167 * a 'type' field which satisfies the OP_NOP function was never never on
168 * the lefthand side of an operator, though it may have been on the
169 * righthand side...
170 */
171#define	OP_DEPENDS	0x00000001  /* Execution of commands depends on
172				     * kids (:) */
173#define	OP_FORCE	0x00000002  /* Always execute commands (!) */
174#define	OP_DOUBLEDEP	0x00000004  /* Execution of commands depends on kids
175				     * per line (::) */
176#define	OP_OPMASK	(OP_DEPENDS|OP_FORCE|OP_DOUBLEDEP)
177
178#define	OP_OPTIONAL	0x00000008  /* Don't care if the target doesn't
179				     * exist and can't be created */
180#define	OP_USE		0x00000010  /* Use associated commands for parents */
181#define	OP_EXEC	  	0x00000020  /* Target is never out of date, but always
182				     * execute commands anyway. Its time
183				     * doesn't matter, so it has none...sort
184				     * of */
185#define	OP_IGNORE	0x00000040  /* Ignore errors when creating the node */
186#define	OP_PRECIOUS	0x00000080  /* Don't remove the target when
187				     * interrupted */
188#define	OP_SILENT	0x00000100  /* Don't echo commands when executed */
189#define	OP_MAKE		0x00000200  /* Target is a recurrsive make so its
190				     * commands should always be executed when
191				     * it is out of date, regardless of the
192				     * state of the -n or -t flags */
193#define	OP_JOIN 	0x00000400  /* Target is out-of-date only if any of its
194				     * children was out-of-date */
195#define	OP_INVISIBLE	0x00004000  /* The node is invisible to its parents.
196				     * I.e. it doesn't show up in the parents's
197				     * local variables. */
198#define	OP_NOTMAIN	0x00008000  /* The node is exempt from normal 'main
199				     * target' processing in parse.c */
200#define	OP_PHONY	0x00010000  /* Not a file target; run always */
201/* Attributes applied by PMake */
202#define	OP_TRANSFORM	0x80000000  /* The node is a transformation rule */
203#define	OP_MEMBER 	0x40000000  /* Target is a member of an archive */
204#define	OP_LIB	  	0x20000000  /* Target is a library */
205#define	OP_ARCHV  	0x10000000  /* Target is an archive construct */
206#define	OP_HAS_COMMANDS	0x08000000  /* Target has all the commands it should.
207				     * Used when parsing to catch multiple
208				     * commands for a target */
209#define	OP_SAVE_CMDS	0x04000000  /* Saving commands on .END (Compat) */
210#define	OP_DEPS_FOUND	0x02000000  /* Already processed by Suff_FindDeps */
211
212/*
213 * OP_NOP will return TRUE if the node with the given type was not the
214 * object of a dependency operator
215 */
216#define	OP_NOP(t)	(((t) & OP_OPMASK) == 0x00000000)
217
218/*
219 * The TARG_ constants are used when calling the Targ_FindNode and
220 * Targ_FindList functions in targ.c. They simply tell the functions what to
221 * do if the desired node(s) is (are) not found. If the TARG_CREATE constant
222 * is given, a new, empty node will be created for the target, placed in the
223 * table of all targets and its address returned. If TARG_NOCREATE is given,
224 * a NULL pointer will be returned.
225 */
226#define	TARG_CREATE	0x01	  /* create node if not found */
227#define	TARG_NOCREATE	0x00	  /* don't create it */
228
229/*
230 * There are several places where expandable buffers are used (parse.c and
231 * var.c). This constant is merely the starting point for those buffers. If
232 * lines tend to be much shorter than this, it would be best to reduce BSIZE.
233 * If longer, it should be increased. Reducing it will cause more copying to
234 * be done for longer lines, but will save space for shorter ones. In any
235 * case, it ought to be a power of two simply because most storage allocation
236 * schemes allocate in powers of two.
237 */
238#define	MAKE_BSIZE		256	/* starting size for expandable buffers */
239
240/*
241 * These constants are all used by the Str_Concat function to decide how the
242 * final string should look. If STR_ADDSPACE is given, a space will be
243 * placed between the two strings. If STR_ADDSLASH is given, a '/' will
244 * be used instead of a space. If neither is given, no intervening characters
245 * will be placed between the two strings in the final output.
246 */
247#define	STR_ADDSPACE	0x01	/* add a space when Str_Concat'ing */
248#define	STR_ADDSLASH	0x04	/* add a slash when Str_Concat'ing */
249
250/*
251 * Error levels for parsing. PARSE_FATAL means the process cannot continue
252 * once the makefile has been parsed. PARSE_WARNING means it can. Passed
253 * as the first argument to Parse_Error.
254 */
255#define	PARSE_WARNING	2
256#define	PARSE_FATAL	1
257
258/*
259 * Values returned by Cond_Eval.
260 */
261#define	COND_PARSE	0   	/* Parse the next lines */
262#define	COND_SKIP 	1   	/* Skip the next lines */
263#define	COND_INVALID	2   	/* Not a conditional statement */
264
265/*
266 * Definitions for the "local" variables. Used only for clarity.
267 */
268#define	TARGET	  	  "@" 	/* Target of dependency */
269#define	OODATE	  	  "?" 	/* All out-of-date sources */
270#define	ALLSRC	  	  ">" 	/* All sources */
271#define	IMPSRC	  	  "<" 	/* Source implied by transformation */
272#define	PREFIX	  	  "*" 	/* Common prefix */
273#define	ARCHIVE	  	  "!" 	/* Archive in "archive(member)" syntax */
274#define	MEMBER	  	  "%" 	/* Member in "archive(member)" syntax */
275
276#define	FTARGET           "@F"  /* file part of TARGET */
277#define	DTARGET           "@D"  /* directory part of TARGET */
278#define	FIMPSRC           "<F"  /* file part of IMPSRC */
279#define	DIMPSRC           "<D"  /* directory part of IMPSRC */
280#define	FPREFIX           "*F"  /* file part of PREFIX */
281#define	DPREFIX           "*D"  /* directory part of PREFIX */
282
283/*
284 * Global Variables
285 */
286extern Lst  	*create;	/* The list of target names specified on the
287				 * command line. used to resolve #if
288				 * make(...) statements */
289extern Lst     *dirSearchPath;  /* The list of directories to search when
290				 * looking for targets */
291extern IFile	curFile;	/* current makefile */
292extern Lst	*parseIncPath;	/* The list of directories to search when
293				 * looking for includes */
294
295extern Boolean	jobsRunning;	/* True if jobs are running */
296extern Boolean	compatMake;	/* True if we are make compatible */
297extern Boolean	ignoreErrors;  	/* True if should ignore all errors */
298extern Boolean  beSilent;    	/* True if should print no commands */
299extern Boolean	beVerbose;	/* True if should print extra cruft */
300extern Boolean  noExecute;    	/* True if should execute nothing */
301extern Boolean  allPrecious;   	/* True if every target is precious */
302extern Boolean  keepgoing;    	/* True if should continue on unaffected
303				 * portions of the graph when have an error
304				 * in one portion */
305extern Boolean 	touchFlag;    	/* TRUE if targets should just be 'touched'
306				 * if out of date. Set by the -t flag */
307extern Boolean  usePipes;    	/* TRUE if should capture the output of
308				 * subshells by means of pipes. Otherwise it
309				 * is routed to temporary files from which it
310				 * is retrieved when the shell exits */
311extern Boolean 	queryFlag;    	/* TRUE if we aren't supposed to really make
312				 * anything, just see if the targets are out-
313				 * of-date */
314
315extern Boolean	checkEnvFirst;	/* TRUE if environment should be searched for
316				 * all variables before the global context */
317extern Lst	*envFirstVars;	/* List of specific variables for which the
318				 * environment should be searched before the
319				 * global context */
320
321extern GNode    *DEFAULT;    	/* .DEFAULT rule */
322
323extern GNode    *VAR_GLOBAL;   	/* Variables defined in a global context, e.g
324				 * in the Makefile itself */
325extern GNode    *VAR_CMD;    	/* Variables defined on the command line */
326extern char    	var_Error[];   	/* Value returned by Var_Parse when an error
327				 * is encountered. It actually points to
328				 * an empty string, so naive callers needn't
329				 * worry about it. */
330
331extern time_t 	now;	    	/* The time at the start of this whole
332				 * process */
333
334extern Boolean	oldVars;    	/* Do old-style variable substitution */
335
336extern Lst	*sysIncPath;	/* The system include path. */
337
338/*
339 * debug control:
340 *	There is one bit per module.  It is up to the module what debug
341 *	information to print.
342 */
343extern int debug;
344#define	DEBUG_ARCH	0x0001
345#define	DEBUG_COND	0x0002
346#define	DEBUG_DIR	0x0004
347#define	DEBUG_GRAPH1	0x0008
348#define	DEBUG_GRAPH2	0x0010
349#define	DEBUG_JOB	0x0020
350#define	DEBUG_MAKE	0x0040
351#define	DEBUG_SUFF	0x0080
352#define	DEBUG_TARG	0x0100
353#define	DEBUG_VAR	0x0200
354#define	DEBUG_FOR	0x0400
355#define	DEBUG_LOUD	0x0800
356
357#define	CONCAT(a,b)	a##b
358
359#define	DEBUG(module)	(debug & CONCAT(DEBUG_,module))
360#define	DEBUGF(module,args)		\
361do {						\
362	if (DEBUG(module)) {			\
363		Debug args ;			\
364	}					\
365} while (0)
366#define	ISDOT(c) ((c)[0] == '.' && (((c)[1] == '\0') || ((c)[1] == '/')))
367#define	ISDOTDOT(c) ((c)[0] == '.' && ISDOT(&((c)[1])))
368
369/*
370 * Since there are so many, all functions that return non-integer values are
371 * extracted by means of a sed script or two and stuck in the file "nonints.h"
372 */
373#include "nonints.h"
374
375int Make_TimeStamp(GNode *, GNode *);
376Boolean Make_OODate(GNode *);
377int Make_HandleUse(GNode *, GNode *);
378void Make_Update(GNode *);
379void Make_DoAllVar(GNode *);
380Boolean Make_Run(Lst *);
381
382#endif /* _MAKE_H_ */
383