Home | History | Annotate | Line # | Download | only in make
compat.c revision 1.43
      1  1.43     bjh21 /*	$NetBSD: compat.c,v 1.43 2002/04/27 15:14:30 bjh21 Exp $	*/
      2  1.10  christos 
      3   1.1       cgd /*
      4   1.1       cgd  * Copyright (c) 1988, 1989, 1990 The Regents of the University of California.
      5   1.1       cgd  * Copyright (c) 1988, 1989 by Adam de Boor
      6   1.1       cgd  * Copyright (c) 1989 by Berkeley Softworks
      7   1.1       cgd  * All rights reserved.
      8   1.1       cgd  *
      9   1.1       cgd  * This code is derived from software contributed to Berkeley by
     10   1.1       cgd  * Adam de Boor.
     11   1.1       cgd  *
     12   1.1       cgd  * Redistribution and use in source and binary forms, with or without
     13   1.1       cgd  * modification, are permitted provided that the following conditions
     14   1.1       cgd  * are met:
     15   1.1       cgd  * 1. Redistributions of source code must retain the above copyright
     16   1.1       cgd  *    notice, this list of conditions and the following disclaimer.
     17   1.1       cgd  * 2. Redistributions in binary form must reproduce the above copyright
     18   1.1       cgd  *    notice, this list of conditions and the following disclaimer in the
     19   1.1       cgd  *    documentation and/or other materials provided with the distribution.
     20   1.1       cgd  * 3. All advertising materials mentioning features or use of this software
     21   1.1       cgd  *    must display the following acknowledgement:
     22   1.1       cgd  *	This product includes software developed by the University of
     23   1.1       cgd  *	California, Berkeley and its contributors.
     24   1.1       cgd  * 4. Neither the name of the University nor the names of its contributors
     25   1.1       cgd  *    may be used to endorse or promote products derived from this software
     26   1.1       cgd  *    without specific prior written permission.
     27   1.1       cgd  *
     28   1.1       cgd  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     29   1.1       cgd  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     30   1.1       cgd  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     31   1.1       cgd  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     32   1.1       cgd  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     33   1.1       cgd  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     34   1.1       cgd  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     35   1.1       cgd  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     36   1.1       cgd  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     37   1.1       cgd  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     38   1.1       cgd  * SUCH DAMAGE.
     39   1.1       cgd  */
     40   1.1       cgd 
     41  1.22     lukem #ifdef MAKE_BOOTSTRAP
     42  1.43     bjh21 static char rcsid[] = "$NetBSD: compat.c,v 1.43 2002/04/27 15:14:30 bjh21 Exp $";
     43  1.22     lukem #else
     44  1.21  christos #include <sys/cdefs.h>
     45   1.1       cgd #ifndef lint
     46  1.10  christos #if 0
     47  1.14  christos static char sccsid[] = "@(#)compat.c	8.2 (Berkeley) 3/19/94";
     48  1.10  christos #else
     49  1.43     bjh21 __RCSID("$NetBSD: compat.c,v 1.43 2002/04/27 15:14:30 bjh21 Exp $");
     50  1.10  christos #endif
     51   1.1       cgd #endif /* not lint */
     52  1.22     lukem #endif
     53   1.1       cgd 
     54   1.1       cgd /*-
     55   1.1       cgd  * compat.c --
     56   1.1       cgd  *	The routines in this file implement the full-compatibility
     57   1.1       cgd  *	mode of PMake. Most of the special functionality of PMake
     58   1.1       cgd  *	is available in this mode. Things not supported:
     59   1.1       cgd  *	    - different shells.
     60   1.1       cgd  *	    - friendly variable substitution.
     61   1.1       cgd  *
     62   1.1       cgd  * Interface:
     63   1.1       cgd  *	Compat_Run	    Initialize things for this module and recreate
     64   1.1       cgd  *	    	  	    thems as need creatin'
     65   1.1       cgd  */
     66   1.1       cgd 
     67   1.1       cgd #include    <stdio.h>
     68   1.1       cgd #include    <sys/types.h>
     69  1.11       jtc #include    <sys/stat.h>
     70   1.1       cgd #include    <sys/wait.h>
     71   1.1       cgd #include    <ctype.h>
     72  1.11       jtc #include    <errno.h>
     73  1.11       jtc #include    <signal.h>
     74   1.1       cgd #include    "make.h"
     75   1.5       cgd #include    "hash.h"
     76   1.5       cgd #include    "dir.h"
     77   1.5       cgd #include    "job.h"
     78  1.43     bjh21 #include    "pathnames.h"
     79   1.1       cgd 
     80   1.1       cgd /*
     81   1.1       cgd  * The following array is used to make a fast determination of which
     82   1.1       cgd  * characters are interpreted specially by the shell.  If a command
     83   1.1       cgd  * contains any of these characters, it is executed by the shell, not
     84   1.1       cgd  * directly by us.
     85   1.1       cgd  */
     86   1.1       cgd 
     87   1.1       cgd static char 	    meta[256];
     88   1.1       cgd 
     89   1.1       cgd static GNode	    *curTarg = NILGNODE;
     90   1.1       cgd static GNode	    *ENDNode;
     91   1.5       cgd static void CompatInterrupt __P((int));
     92   1.7       jtc static int CompatRunCommand __P((ClientData, ClientData));
     93   1.7       jtc static int CompatMake __P((ClientData, ClientData));
     94   1.1       cgd 
     95   1.1       cgd /*-
     96   1.1       cgd  *-----------------------------------------------------------------------
     97   1.1       cgd  * CompatInterrupt --
     98   1.1       cgd  *	Interrupt the creation of the current target and remove it if
     99   1.1       cgd  *	it ain't precious.
    100   1.1       cgd  *
    101   1.1       cgd  * Results:
    102   1.1       cgd  *	None.
    103   1.1       cgd  *
    104   1.1       cgd  * Side Effects:
    105   1.1       cgd  *	The target is removed and the process exits. If .INTERRUPT exists,
    106   1.1       cgd  *	its commands are run first WITH INTERRUPTS IGNORED..
    107   1.1       cgd  *
    108   1.1       cgd  *-----------------------------------------------------------------------
    109   1.1       cgd  */
    110   1.1       cgd static void
    111   1.1       cgd CompatInterrupt (signo)
    112   1.1       cgd     int	    signo;
    113   1.1       cgd {
    114   1.1       cgd     GNode   *gn;
    115  1.14  christos 
    116   1.1       cgd     if ((curTarg != NILGNODE) && !Targ_Precious (curTarg)) {
    117   1.7       jtc 	char	  *p1;
    118   1.7       jtc 	char 	  *file = Var_Value (TARGET, curTarg, &p1);
    119   1.1       cgd 
    120  1.12  christos 	if (!noExecute && eunlink(file) != -1) {
    121  1.42  christos 	    Error("*** %s removed", file);
    122   1.1       cgd 	}
    123   1.7       jtc 	if (p1)
    124   1.7       jtc 	    free(p1);
    125   1.1       cgd 
    126   1.1       cgd 	/*
    127   1.1       cgd 	 * Run .INTERRUPT only if hit with interrupt signal
    128   1.1       cgd 	 */
    129   1.1       cgd 	if (signo == SIGINT) {
    130   1.1       cgd 	    gn = Targ_FindNode(".INTERRUPT", TARG_NOCREATE);
    131   1.1       cgd 	    if (gn != NILGNODE) {
    132   1.1       cgd 		Lst_ForEach(gn->commands, CompatRunCommand, (ClientData)gn);
    133   1.1       cgd 	    }
    134   1.1       cgd 	}
    135   1.7       jtc 
    136   1.1       cgd     }
    137   1.7       jtc     exit (signo);
    138   1.1       cgd }
    139   1.1       cgd 
    140   1.1       cgd /*-
    142   1.1       cgd  *-----------------------------------------------------------------------
    143   1.1       cgd  * CompatRunCommand --
    144   1.1       cgd  *	Execute the next command for a target. If the command returns an
    145   1.1       cgd  *	error, the node's made field is set to ERROR and creation stops.
    146   1.1       cgd  *
    147   1.1       cgd  * Results:
    148   1.1       cgd  *	0 if the command succeeded, 1 if an error occurred.
    149   1.1       cgd  *
    150   1.1       cgd  * Side Effects:
    151   1.1       cgd  *	The node's 'made' field may be set to ERROR.
    152   1.1       cgd  *
    153   1.1       cgd  *-----------------------------------------------------------------------
    154   1.1       cgd  */
    155   1.7       jtc static int
    156   1.7       jtc CompatRunCommand (cmdp, gnp)
    157   1.7       jtc     ClientData    cmdp;	    	/* Command to execute */
    158   1.1       cgd     ClientData    gnp;    	/* Node from which the command came */
    159   1.1       cgd {
    160  1.24  christos     char    	  *cmdStart;	/* Start of expanded command */
    161   1.1       cgd     char 	  *cp, *bp;
    162   1.1       cgd     Boolean 	  silent,   	/* Don't print command */
    163  1.13  christos 		  errCheck; 	/* Check errors */
    164   1.1       cgd     int 	  reason;   	/* Reason for child's death */
    165   1.1       cgd     int	    	  status;   	/* Description of child's death */
    166  1.37   reinoud     int	    	  cpid;	    	/* Child actually found */
    167   1.1       cgd     ReturnStatus  retstat;    	/* Status of fork */
    168   1.1       cgd     LstNode 	  cmdNode;  	/* Node where current command is located */
    169   1.1       cgd     char    	  **av;	    	/* Argument vector for thing to exec */
    170   1.1       cgd     int	    	  argc;	    	/* Number of arguments in av or 0 if not
    171   1.1       cgd 				 * dynamically allocated */
    172   1.1       cgd     Boolean 	  local;    	/* TRUE if command should be executed
    173   1.7       jtc 				 * locally */
    174   1.7       jtc     char	  *cmd = (char *) cmdp;
    175   1.1       cgd     GNode	  *gn = (GNode *) gnp;
    176  1.14  christos 
    177   1.6       cgd     /*
    178   1.6       cgd      * Avoid clobbered variable warnings by forcing the compiler
    179   1.6       cgd      * to ``unregister'' variables
    180   1.6       cgd      */
    181   1.6       cgd #if __GNUC__
    182   1.6       cgd     (void) &av;
    183   1.6       cgd     (void) &errCheck;
    184   1.1       cgd #endif
    185   1.1       cgd     silent = gn->type & OP_SILENT;
    186   1.1       cgd     errCheck = !(gn->type & OP_IGNORE);
    187   1.1       cgd 
    188   1.5       cgd     cmdNode = Lst_Member (gn->commands, (ClientData)cmd);
    189   1.1       cgd     cmdStart = Var_Subst (NULL, cmd, gn, FALSE);
    190   1.1       cgd 
    191  1.24  christos     /*
    192   1.1       cgd      * brk_string will return an argv with a NULL in av[0], thus causing
    193   1.1       cgd      * execvp to choke and die horribly. Besides, how can we execute a null
    194   1.1       cgd      * command? In any case, we warn the user that the command expanded to
    195   1.1       cgd      * nothing (is this the right thing to do?).
    196  1.14  christos      */
    197   1.1       cgd 
    198   1.7       jtc     if (*cmdStart == '\0') {
    199   1.1       cgd 	free(cmdStart);
    200   1.1       cgd 	Error("%s expands to empty string", cmd);
    201   1.1       cgd 	return(0);
    202   1.1       cgd     } else {
    203   1.1       cgd 	cmd = cmdStart;
    204   1.1       cgd     }
    205   1.1       cgd     Lst_Replace (cmdNode, (ClientData)cmdStart);
    206   1.1       cgd 
    207   1.1       cgd     if ((gn->type & OP_SAVE_CMDS) && (gn != ENDNode)) {
    208   1.1       cgd 	(void)Lst_AtEnd(ENDNode->commands, (ClientData)cmdStart);
    209   1.1       cgd 	return(0);
    210   1.1       cgd     } else if (strcmp(cmdStart, "...") == 0) {
    211   1.1       cgd 	gn->type |= OP_SAVE_CMDS;
    212   1.1       cgd 	return(0);
    213   1.1       cgd     }
    214   1.1       cgd 
    215   1.1       cgd     while ((*cmd == '@') || (*cmd == '-')) {
    216   1.1       cgd 	if (*cmd == '@') {
    217   1.1       cgd 	    silent = TRUE;
    218   1.1       cgd 	} else {
    219   1.1       cgd 	    errCheck = FALSE;
    220   1.1       cgd 	}
    221   1.1       cgd 	cmd++;
    222   1.1       cgd     }
    223   1.5       cgd 
    224   1.5       cgd     while (isspace((unsigned char)*cmd))
    225  1.14  christos 	cmd++;
    226   1.1       cgd 
    227   1.1       cgd     /*
    228   1.1       cgd      * Search for meta characters in the command. If there are no meta
    229   1.1       cgd      * characters, there's no need to execute a shell to execute the
    230   1.1       cgd      * command.
    231   1.5       cgd      */
    232   1.1       cgd     for (cp = cmd; !meta[(unsigned char)*cp]; cp++) {
    233   1.1       cgd 	continue;
    234   1.1       cgd     }
    235   1.1       cgd 
    236   1.1       cgd     /*
    237   1.1       cgd      * Print the command before echoing if we're not supposed to be quiet for
    238   1.1       cgd      * this one. We also print the command if -n given.
    239  1.31  sommerfe      */
    240   1.1       cgd     if (!silent || NoExecute(gn)) {
    241   1.1       cgd 	printf ("%s\n", cmd);
    242   1.1       cgd 	fflush(stdout);
    243   1.1       cgd     }
    244   1.1       cgd 
    245   1.1       cgd     /*
    246   1.1       cgd      * If we're not supposed to execute any commands, this is as far as
    247   1.1       cgd      * we go...
    248  1.31  sommerfe      */
    249   1.1       cgd     if (NoExecute(gn)) {
    250   1.1       cgd 	return (0);
    251  1.14  christos     }
    252   1.1       cgd 
    253   1.1       cgd     if (*cp != '\0') {
    254   1.1       cgd 	/*
    255   1.1       cgd 	 * If *cp isn't the null character, we hit a "meta" character and
    256   1.1       cgd 	 * need to pass the command off to the shell. We give the shell the
    257   1.1       cgd 	 * -e flag as well as -c if it's supposed to exit when it hits an
    258   1.1       cgd 	 * error.
    259  1.43     bjh21 	 */
    260   1.1       cgd 	static char	*shargv[4] = { _PATH_BSHELL };
    261  1.34       sjg 
    262  1.34       sjg 	if (DEBUG(SHELL))
    263  1.34       sjg 		shargv[1] = (errCheck ? "-exc" : "-xc");
    264  1.34       sjg 	else
    265   1.1       cgd 		shargv[1] = (errCheck ? "-ec" : "-c");
    266   1.1       cgd 	shargv[2] = cmd;
    267   1.1       cgd 	shargv[3] = (char *)NULL;
    268   1.1       cgd 	av = shargv;
    269  1.24  christos 	argc = 0;
    270   1.1       cgd 	bp = NULL;
    271   1.1       cgd     } else {
    272   1.1       cgd 	/*
    273   1.1       cgd 	 * No meta-characters, so no need to exec a shell. Break the command
    274   1.1       cgd 	 * into words to form an argument vector we can execute.
    275  1.24  christos 	 */
    276   1.1       cgd 	av = brk_string(cmd, &argc, TRUE, &bp);
    277  1.14  christos     }
    278   1.1       cgd 
    279   1.1       cgd     local = TRUE;
    280   1.1       cgd 
    281   1.1       cgd     /*
    282   1.1       cgd      * Fork and execute the single command. If the fork fails, we abort.
    283   1.1       cgd      */
    284   1.1       cgd     cpid = vfork();
    285   1.1       cgd     if (cpid < 0) {
    286   1.1       cgd 	Fatal("Could not fork");
    287   1.1       cgd     }
    288  1.30       sjg     if (cpid == 0) {
    289  1.33  christos 	Check_Cwd(av);
    290  1.33  christos 	if (local)
    291  1.33  christos 	    (void)execvp(av[0], av);
    292   1.1       cgd 	else
    293  1.41        pk 	    (void)execv(av[0], av);
    294  1.23   thorpej 	execError("exec", av[0]);
    295   1.1       cgd 	_exit(1);
    296  1.25     itohy     }
    297  1.25     itohy     if (bp) {
    298  1.25     itohy 	free(av);
    299  1.25     itohy 	free(bp);
    300   1.7       jtc     }
    301   1.7       jtc     free(cmdStart);
    302  1.14  christos     Lst_Replace (cmdNode, (ClientData) NULL);
    303   1.1       cgd 
    304   1.1       cgd     /*
    305   1.1       cgd      * The child is off and running. Now all we can do is wait...
    306   1.1       cgd      */
    307   1.1       cgd     while (1) {
    308  1.37   reinoud 
    309  1.37   reinoud 	while ((retstat = wait(&reason)) != cpid) {
    310   1.1       cgd 	    if (retstat == -1 && errno != EINTR) {
    311   1.1       cgd 		break;
    312   1.1       cgd 	    }
    313  1.14  christos 	}
    314  1.37   reinoud 
    315   1.1       cgd 	if (retstat > -1) {
    316  1.13  christos 	    if (WIFSTOPPED(reason)) {
    317   1.1       cgd 		status = WSTOPSIG(reason);		/* stopped */
    318  1.13  christos 	    } else if (WIFEXITED(reason)) {
    319   1.1       cgd 		status = WEXITSTATUS(reason);		/* exited */
    320   1.1       cgd 		if (status != 0) {
    321   1.1       cgd 		    printf ("*** Error code %d", status);
    322   1.1       cgd 		}
    323  1.13  christos 	    } else {
    324   1.1       cgd 		status = WTERMSIG(reason);		/* signaled */
    325  1.14  christos 		printf ("*** Signal %d", status);
    326  1.14  christos 	    }
    327   1.1       cgd 
    328   1.1       cgd 
    329   1.1       cgd 	    if (!WIFEXITED(reason) || (status != 0)) {
    330   1.1       cgd 		if (errCheck) {
    331   1.1       cgd 		    gn->made = ERROR;
    332   1.1       cgd 		    if (keepgoing) {
    333   1.1       cgd 			/*
    334   1.1       cgd 			 * Abort the current target, but let others
    335   1.1       cgd 			 * continue.
    336   1.1       cgd 			 */
    337   1.1       cgd 			printf (" (continuing)\n");
    338   1.1       cgd 		    }
    339   1.1       cgd 		} else {
    340   1.1       cgd 		    /*
    341   1.1       cgd 		     * Continue executing commands for this target.
    342   1.1       cgd 		     * If we return 0, this will happen...
    343   1.1       cgd 		     */
    344   1.1       cgd 		    printf (" (ignored)\n");
    345   1.1       cgd 		    status = 0;
    346   1.1       cgd 		}
    347   1.1       cgd 	    }
    348   1.1       cgd 	    break;
    349  1.37   reinoud 	} else {
    350   1.1       cgd 	    Fatal ("error in wait: %d: %s", retstat, strerror(errno));
    351   1.1       cgd 	    /*NOTREACHED*/
    352   1.1       cgd 	}
    353   1.1       cgd     }
    354   1.1       cgd 
    355   1.1       cgd     return (status);
    356   1.1       cgd }
    357   1.1       cgd 
    358   1.1       cgd /*-
    360   1.1       cgd  *-----------------------------------------------------------------------
    361   1.1       cgd  * CompatMake --
    362   1.1       cgd  *	Make a target.
    363   1.1       cgd  *
    364   1.1       cgd  * Results:
    365   1.1       cgd  *	0
    366   1.1       cgd  *
    367   1.1       cgd  * Side Effects:
    368   1.1       cgd  *	If an error is detected and not being ignored, the process exits.
    369   1.1       cgd  *
    370   1.1       cgd  *-----------------------------------------------------------------------
    371   1.7       jtc  */
    372   1.7       jtc static int
    373   1.7       jtc CompatMake (gnp, pgnp)
    374   1.1       cgd     ClientData	gnp;	    /* The node to make */
    375   1.7       jtc     ClientData  pgnp;	    /* Parent to abort if necessary */
    376   1.7       jtc {
    377  1.16  christos     GNode *gn = (GNode *) gnp;
    378  1.40        pk     GNode *pgn = (GNode *) pgnp;
    379   1.1       cgd 
    380   1.1       cgd     if (gn->made == UNMADE && (gn == pgn || (pgn->type & OP_MADE) == 0)) {
    381   1.1       cgd 	/*
    382   1.1       cgd 	 * First mark ourselves to be made, then apply whatever transformations
    383   1.1       cgd 	 * the suffix module thinks are necessary. Once that's done, we can
    384   1.1       cgd 	 * descend and make all our children. If any of them has an error
    385   1.1       cgd 	 * but the -k flag was given, our 'make' field will be set FALSE again.
    386   1.1       cgd 	 * This is our signal to not attempt to do anything but abort our
    387  1.26  christos 	 * parent as well.
    388   1.1       cgd 	 */
    389  1.38        pk 	gn->flags |= REMAKE;
    390  1.38        pk 	gn->made = BEINGMADE;
    391   1.1       cgd 	if ((gn->type & OP_MADE) == 0)
    392  1.26  christos 	    Suff_FindDeps (gn);
    393   1.1       cgd 	Lst_ForEach (gn->children, CompatMake, (ClientData)gn);
    394  1.26  christos 	if ((gn->flags & REMAKE) == 0) {
    395  1.28   mycroft 	    gn->made = ABORTED;
    396   1.1       cgd 	    pgn->flags &= ~REMAKE;
    397   1.1       cgd 	    goto cohorts;
    398   1.1       cgd 	}
    399   1.7       jtc 
    400  1.35       sjg 	if (Lst_Member (gn->iParents, pgn) != NILLNODE) {
    401   1.7       jtc 	    char *p1;
    402   1.7       jtc 	    Var_Set (IMPSRC, Var_Value(TARGET, gn, &p1), pgn, 0);
    403   1.1       cgd 	    if (p1)
    404  1.14  christos 		free(p1);
    405   1.1       cgd 	}
    406   1.1       cgd 
    407   1.1       cgd 	/*
    408   1.1       cgd 	 * All the children were made ok. Now cmtime contains the modification
    409   1.1       cgd 	 * time of the newest child, we need to find out if we exist and when
    410   1.1       cgd 	 * we were modified last. The criteria for datedness are defined by the
    411   1.1       cgd 	 * Make_OODate function.
    412   1.1       cgd 	 */
    413   1.1       cgd 	if (DEBUG(MAKE)) {
    414   1.1       cgd 	    printf("Examining %s...", gn->name);
    415   1.1       cgd 	}
    416   1.1       cgd 	if (! Make_OODate(gn)) {
    417   1.1       cgd 	    gn->made = UPTODATE;
    418   1.1       cgd 	    if (DEBUG(MAKE)) {
    419  1.28   mycroft 		printf("up-to-date.\n");
    420   1.1       cgd 	    }
    421   1.1       cgd 	    goto cohorts;
    422   1.1       cgd 	} else if (DEBUG(MAKE)) {
    423   1.1       cgd 	    printf("out-of-date.\n");
    424   1.1       cgd 	}
    425   1.1       cgd 
    426   1.1       cgd 	/*
    427   1.1       cgd 	 * If the user is just seeing if something is out-of-date, exit now
    428   1.1       cgd 	 * to tell him/her "yes".
    429  1.32       wiz 	 */
    430   1.1       cgd 	if (queryFlag) {
    431   1.1       cgd 	    exit (1);
    432   1.1       cgd 	}
    433   1.1       cgd 
    434   1.1       cgd 	/*
    435   1.1       cgd 	 * We need to be re-made. We also have to make sure we've got a $?
    436   1.1       cgd 	 * variable. To be nice, we also define the $> variable using
    437   1.1       cgd 	 * Make_DoAllVar().
    438  1.14  christos 	 */
    439   1.1       cgd 	Make_DoAllVar(gn);
    440   1.1       cgd 
    441   1.1       cgd 	/*
    442   1.1       cgd 	 * Alter our type to tell if errors should be ignored or things
    443   1.1       cgd 	 * should not be printed so CompatRunCommand knows what to do.
    444   1.1       cgd 	 */
    445   1.1       cgd 	if (Targ_Ignore (gn)) {
    446   1.1       cgd 	    gn->type |= OP_IGNORE;
    447   1.1       cgd 	}
    448   1.1       cgd 	if (Targ_Silent (gn)) {
    449   1.1       cgd 	    gn->type |= OP_SILENT;
    450   1.1       cgd 	}
    451   1.1       cgd 
    452   1.1       cgd 	if (Job_CheckCommands (gn, Fatal)) {
    453   1.1       cgd 	    /*
    454   1.1       cgd 	     * Our commands are ok, but we still have to worry about the -t
    455  1.20   mycroft 	     * flag...
    456   1.1       cgd 	     */
    457   1.1       cgd 	    if (!touchFlag || (gn->type & OP_MAKE)) {
    458   1.1       cgd 		curTarg = gn;
    459   1.1       cgd 		Lst_ForEach (gn->commands, CompatRunCommand, (ClientData)gn);
    460   1.1       cgd 		curTarg = NILGNODE;
    461   1.1       cgd 	    } else {
    462   1.1       cgd 		Job_Touch (gn, gn->type & OP_SILENT);
    463   1.1       cgd 	    }
    464   1.1       cgd 	} else {
    465   1.1       cgd 	    gn->made = ERROR;
    466   1.1       cgd 	}
    467   1.1       cgd 
    468   1.1       cgd 	if (gn->made != ERROR) {
    469   1.1       cgd 	    /*
    470   1.1       cgd 	     * If the node was made successfully, mark it so, update
    471   1.1       cgd 	     * its modification time and timestamp all its parents. Note
    472   1.1       cgd 	     * that for .ZEROTIME targets, the timestamping isn't done.
    473   1.1       cgd 	     * This is to keep its state from affecting that of its parent.
    474  1.26  christos 	     */
    475   1.1       cgd 	    gn->made = MADE;
    476  1.26  christos 	    pgn->flags |= Make_Recheck(gn) == 0 ? FORCE : 0;
    477   1.1       cgd 	    if (!(gn->type & OP_EXEC)) {
    478   1.1       cgd 		pgn->flags |= CHILDMADE;
    479   1.1       cgd 		Make_TimeStamp(pgn, gn);
    480  1.26  christos 	    }
    481   1.1       cgd 	} else if (keepgoing) {
    482  1.34       sjg 	    pgn->flags &= ~REMAKE;
    483   1.1       cgd 	} else {
    484   1.1       cgd 	    PrintOnError("\n\nStop.");
    485   1.1       cgd 	    exit (1);
    486   1.1       cgd 	}
    487   1.1       cgd     } else if (gn->made == ERROR) {
    488   1.1       cgd 	/*
    489   1.1       cgd 	 * Already had an error when making this beastie. Tell the parent
    490  1.26  christos 	 * to abort.
    491   1.1       cgd 	 */
    492   1.1       cgd 	pgn->flags &= ~REMAKE;
    493   1.7       jtc     } else {
    494  1.35       sjg 	if (Lst_Member (gn->iParents, pgn) != NILLNODE) {
    495   1.7       jtc 	    char *p1;
    496   1.7       jtc 	    Var_Set (IMPSRC, Var_Value(TARGET, gn, &p1), pgn, 0);
    497   1.1       cgd 	    if (p1)
    498   1.1       cgd 		free(p1);
    499   1.1       cgd 	}
    500  1.42  christos 	switch(gn->made) {
    501   1.1       cgd 	    case BEINGMADE:
    502  1.26  christos 		Error("Graph cycles through %s", gn->name);
    503   1.1       cgd 		gn->made = ERROR;
    504   1.1       cgd 		pgn->flags &= ~REMAKE;
    505   1.1       cgd 		break;
    506  1.26  christos 	    case MADE:
    507   1.1       cgd 		if ((gn->type & OP_EXEC) == 0) {
    508   1.1       cgd 		    pgn->flags |= CHILDMADE;
    509   1.1       cgd 		    Make_TimeStamp(pgn, gn);
    510   1.1       cgd 		}
    511   1.1       cgd 		break;
    512   1.1       cgd 	    case UPTODATE:
    513   1.1       cgd 		if ((gn->type & OP_EXEC) == 0) {
    514   1.1       cgd 		    Make_TimeStamp(pgn, gn);
    515   1.5       cgd 		}
    516   1.5       cgd 		break;
    517   1.1       cgd 	    default:
    518   1.1       cgd 		break;
    519   1.1       cgd 	}
    520  1.28   mycroft     }
    521  1.28   mycroft 
    522   1.1       cgd cohorts:
    523   1.1       cgd     Lst_ForEach (gn->cohorts, CompatMake, pgnp);
    524  1.14  christos     return (0);
    525   1.1       cgd }
    526   1.1       cgd 
    527   1.1       cgd /*-
    529   1.1       cgd  *-----------------------------------------------------------------------
    530   1.1       cgd  * Compat_Run --
    531   1.1       cgd  *	Initialize this mode and start making.
    532   1.1       cgd  *
    533   1.1       cgd  * Results:
    534   1.1       cgd  *	None.
    535   1.1       cgd  *
    536   1.1       cgd  * Side Effects:
    537   1.1       cgd  *	Guess what?
    538   1.1       cgd  *
    539   1.1       cgd  *-----------------------------------------------------------------------
    540   1.1       cgd  */
    541   1.1       cgd void
    542   1.1       cgd Compat_Run(targs)
    543   1.5       cgd     Lst	    	  targs;    /* List of target nodes to re-create */
    544   1.1       cgd {
    545   1.1       cgd     char    	  *cp;	    /* Pointer to string of shell meta-characters */
    546   1.1       cgd     GNode   	  *gn = NULL;/* Current root target */
    547   1.1       cgd     int	    	  errors;   /* Number of targets not remade due to errors */
    548   1.1       cgd 
    549   1.1       cgd     if (signal(SIGINT, SIG_IGN) != SIG_IGN) {
    550   1.1       cgd 	signal(SIGINT, CompatInterrupt);
    551   1.1       cgd     }
    552   1.1       cgd     if (signal(SIGTERM, SIG_IGN) != SIG_IGN) {
    553   1.1       cgd 	signal(SIGTERM, CompatInterrupt);
    554   1.1       cgd     }
    555   1.1       cgd     if (signal(SIGHUP, SIG_IGN) != SIG_IGN) {
    556   1.1       cgd 	signal(SIGHUP, CompatInterrupt);
    557   1.1       cgd     }
    558   1.1       cgd     if (signal(SIGQUIT, SIG_IGN) != SIG_IGN) {
    559   1.1       cgd 	signal(SIGQUIT, CompatInterrupt);
    560   1.5       cgd     }
    561   1.1       cgd 
    562   1.1       cgd     for (cp = "#=|^(){};&<>*?[]:$`\\\n"; *cp != '\0'; cp++) {
    563   1.1       cgd 	meta[(unsigned char) *cp] = 1;
    564   1.1       cgd     }
    565   1.1       cgd     /*
    566   1.1       cgd      * The null character serves as a sentinel in the string.
    567   1.1       cgd      */
    568   1.1       cgd     meta[0] = 1;
    569   1.1       cgd 
    570   1.1       cgd     ENDNode = Targ_FindNode(".END", TARG_CREATE);
    571   1.1       cgd     /*
    572   1.1       cgd      * If the user has defined a .BEGIN target, execute the commands attached
    573   1.1       cgd      * to it.
    574   1.1       cgd      */
    575   1.1       cgd     if (!queryFlag) {
    576  1.14  christos 	gn = Targ_FindNode(".BEGIN", TARG_NOCREATE);
    577  1.34       sjg 	if (gn != NILGNODE) {
    578  1.14  christos 	    Lst_ForEach(gn->commands, CompatRunCommand, (ClientData)gn);
    579  1.14  christos             if (gn->made == ERROR) {
    580   1.1       cgd                 PrintOnError("\n\nStop.");
    581   1.1       cgd                 exit(1);
    582  1.15  christos             }
    583  1.15  christos 	}
    584  1.15  christos     }
    585  1.15  christos 
    586  1.15  christos     /*
    587  1.15  christos      * Expand .USE nodes right now, because they can modify the structure
    588   1.1       cgd      * of the tree.
    589   1.1       cgd      */
    590   1.1       cgd     Lst_Destroy(Make_ExpandUse(targs), NOFREE);
    591   1.1       cgd 
    592   1.1       cgd     /*
    593   1.1       cgd      * For each entry in the list of targets to create, call CompatMake on
    594   1.1       cgd      * it to create the thing. CompatMake will leave the 'made' field of gn
    595   1.1       cgd      * in one of several states:
    596   1.1       cgd      *	    UPTODATE	    gn was already up-to-date
    597   1.1       cgd      *	    MADE  	    gn was recreated successfully
    598   1.1       cgd      *	    ERROR 	    An error occurred while gn was being created
    599   1.1       cgd      *	    ABORTED	    gn was not remade because one of its inferiors
    600   1.1       cgd      *	    	  	    could not be made due to errors.
    601   1.1       cgd      */
    602   1.1       cgd     errors = 0;
    603   1.1       cgd     while (!Lst_IsEmpty (targs)) {
    604   1.1       cgd 	gn = (GNode *) Lst_DeQueue (targs);
    605   1.1       cgd 	CompatMake (gn, gn);
    606   1.1       cgd 
    607   1.1       cgd 	if (gn->made == UPTODATE) {
    608   1.1       cgd 	    printf ("`%s' is up to date.\n", gn->name);
    609   1.1       cgd 	} else if (gn->made == ABORTED) {
    610   1.1       cgd 	    printf ("`%s' not remade because of errors.\n", gn->name);
    611   1.1       cgd 	    errors += 1;
    612   1.1       cgd 	}
    613   1.1       cgd     }
    614   1.1       cgd 
    615   1.1       cgd     /*
    616   1.1       cgd      * If the user has defined a .END target, run its commands.
    617  1.36       sjg      */
    618  1.36       sjg     if (errors == 0) {
    619  1.36       sjg 	Lst_ForEach(ENDNode->commands, CompatRunCommand, (ClientData)gn);
    620  1.36       sjg 	if (gn->made == ERROR) {
    621   1.1       cgd 	    PrintOnError("\n\nStop.");
    622   1.1       cgd 	    exit(1);
    623                 	}
    624                     }
    625                 }
    626