Home | History | Annotate | Line # | Download | only in make
suff.c revision 1.85
      1 /*	$NetBSD: suff.c,v 1.85 2017/04/16 19:53:58 riastradh Exp $	*/
      2 
      3 /*
      4  * Copyright (c) 1988, 1989, 1990, 1993
      5  *	The Regents of the University of California.  All rights reserved.
      6  *
      7  * This code is derived from software contributed to Berkeley by
      8  * Adam de Boor.
      9  *
     10  * Redistribution and use in source and binary forms, with or without
     11  * modification, are permitted provided that the following conditions
     12  * are met:
     13  * 1. Redistributions of source code must retain the above copyright
     14  *    notice, this list of conditions and the following disclaimer.
     15  * 2. Redistributions in binary form must reproduce the above copyright
     16  *    notice, this list of conditions and the following disclaimer in the
     17  *    documentation and/or other materials provided with the distribution.
     18  * 3. Neither the name of the University nor the names of its contributors
     19  *    may be used to endorse or promote products derived from this software
     20  *    without specific prior written permission.
     21  *
     22  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     23  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     24  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     25  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     26  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     27  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     28  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     29  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     30  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     31  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     32  * SUCH DAMAGE.
     33  */
     34 
     35 /*
     36  * Copyright (c) 1989 by Berkeley Softworks
     37  * All rights reserved.
     38  *
     39  * This code is derived from software contributed to Berkeley by
     40  * Adam de Boor.
     41  *
     42  * Redistribution and use in source and binary forms, with or without
     43  * modification, are permitted provided that the following conditions
     44  * are met:
     45  * 1. Redistributions of source code must retain the above copyright
     46  *    notice, this list of conditions and the following disclaimer.
     47  * 2. Redistributions in binary form must reproduce the above copyright
     48  *    notice, this list of conditions and the following disclaimer in the
     49  *    documentation and/or other materials provided with the distribution.
     50  * 3. All advertising materials mentioning features or use of this software
     51  *    must display the following acknowledgement:
     52  *	This product includes software developed by the University of
     53  *	California, Berkeley and its contributors.
     54  * 4. Neither the name of the University nor the names of its contributors
     55  *    may be used to endorse or promote products derived from this software
     56  *    without specific prior written permission.
     57  *
     58  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     59  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     60  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     61  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     62  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     63  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     64  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     65  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     66  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     67  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     68  * SUCH DAMAGE.
     69  */
     70 
     71 #ifndef MAKE_NATIVE
     72 static char rcsid[] = "$NetBSD: suff.c,v 1.85 2017/04/16 19:53:58 riastradh Exp $";
     73 #else
     74 #include <sys/cdefs.h>
     75 #ifndef lint
     76 #if 0
     77 static char sccsid[] = "@(#)suff.c	8.4 (Berkeley) 3/21/94";
     78 #else
     79 __RCSID("$NetBSD: suff.c,v 1.85 2017/04/16 19:53:58 riastradh Exp $");
     80 #endif
     81 #endif /* not lint */
     82 #endif
     83 
     84 /*-
     85  * suff.c --
     86  *	Functions to maintain suffix lists and find implicit dependents
     87  *	using suffix transformation rules
     88  *
     89  * Interface:
     90  *	Suff_Init 	    	Initialize all things to do with suffixes.
     91  *
     92  *	Suff_End 	    	Cleanup the module
     93  *
     94  *	Suff_DoPaths	    	This function is used to make life easier
     95  *	    	  	    	when searching for a file according to its
     96  *	    	  	    	suffix. It takes the global search path,
     97  *	    	  	    	as defined using the .PATH: target, and appends
     98  *	    	  	    	its directories to the path of each of the
     99  *	    	  	    	defined suffixes, as specified using
    100  *	    	  	    	.PATH<suffix>: targets. In addition, all
    101  *	    	  	    	directories given for suffixes labeled as
    102  *	    	  	    	include files or libraries, using the .INCLUDES
    103  *	    	  	    	or .LIBS targets, are played with using
    104  *	    	  	    	Dir_MakeFlags to create the .INCLUDES and
    105  *	    	  	    	.LIBS global variables.
    106  *
    107  *	Suff_ClearSuffixes  	Clear out all the suffixes and defined
    108  *	    	  	    	transformations.
    109  *
    110  *	Suff_IsTransform    	Return TRUE if the passed string is the lhs
    111  *	    	  	    	of a transformation rule.
    112  *
    113  *	Suff_AddSuffix	    	Add the passed string as another known suffix.
    114  *
    115  *	Suff_GetPath	    	Return the search path for the given suffix.
    116  *
    117  *	Suff_AddInclude	    	Mark the given suffix as denoting an include
    118  *	    	  	    	file.
    119  *
    120  *	Suff_AddLib	    	Mark the given suffix as denoting a library.
    121  *
    122  *	Suff_AddTransform   	Add another transformation to the suffix
    123  *	    	  	    	graph. Returns  GNode suitable for framing, I
    124  *	    	  	    	mean, tacking commands, attributes, etc. on.
    125  *
    126  *	Suff_SetNull	    	Define the suffix to consider the suffix of
    127  *	    	  	    	any file that doesn't have a known one.
    128  *
    129  *	Suff_FindDeps	    	Find implicit sources for and the location of
    130  *	    	  	    	a target based on its suffix. Returns the
    131  *	    	  	    	bottom-most node added to the graph or NULL
    132  *	    	  	    	if the target had no implicit sources.
    133  *
    134  *	Suff_FindPath	    	Return the appropriate path to search in
    135  *				order to find the node.
    136  */
    137 
    138 #include    	  <stdio.h>
    139 #include	  "make.h"
    140 #include	  "hash.h"
    141 #include	  "dir.h"
    142 
    143 static Lst       sufflist;	/* Lst of suffixes */
    144 #ifdef CLEANUP
    145 static Lst	 suffClean;	/* Lst of suffixes to be cleaned */
    146 #endif
    147 static Lst	 srclist;	/* Lst of sources */
    148 static Lst       transforms;	/* Lst of transformation rules */
    149 
    150 static int        sNum = 0;	/* Counter for assigning suffix numbers */
    151 
    152 /*
    153  * Structure describing an individual suffix.
    154  */
    155 typedef struct _Suff {
    156     char         *name;	    	/* The suffix itself */
    157     int		 nameLen;	/* Length of the suffix */
    158     short	 flags;      	/* Type of suffix */
    159 #define SUFF_INCLUDE	  0x01	    /* One which is #include'd */
    160 #define SUFF_LIBRARY	  0x02	    /* One which contains a library */
    161 #define SUFF_NULL 	  0x04	    /* The empty suffix */
    162     Lst    	 searchPath;	/* The path along which files of this suffix
    163 				 * may be found */
    164     int          sNum;	      	/* The suffix number */
    165     int		 refCount;	/* Reference count of list membership */
    166     Lst          parents;	/* Suffixes we have a transformation to */
    167     Lst          children;	/* Suffixes we have a transformation from */
    168     Lst		 ref;		/* List of lists this suffix is referenced */
    169 } Suff;
    170 
    171 /*
    172  * for SuffSuffIsSuffix
    173  */
    174 typedef struct {
    175     char	*ename;		/* The end of the name */
    176     int		 len;		/* Length of the name */
    177 } SuffixCmpData;
    178 
    179 /*
    180  * Structure used in the search for implied sources.
    181  */
    182 typedef struct _Src {
    183     char            *file;	/* The file to look for */
    184     char    	    *pref;  	/* Prefix from which file was formed */
    185     Suff            *suff;	/* The suffix on the file */
    186     struct _Src     *parent;	/* The Src for which this is a source */
    187     GNode           *node;	/* The node describing the file */
    188     int	    	    children;	/* Count of existing children (so we don't free
    189 				 * this thing too early or never nuke it) */
    190 #ifdef DEBUG_SRC
    191     Lst		    cp;		/* Debug; children list */
    192 #endif
    193 } Src;
    194 
    195 /*
    196  * A structure for passing more than one argument to the Lst-library-invoked
    197  * function...
    198  */
    199 typedef struct {
    200     Lst            l;
    201     Src            *s;
    202 } LstSrc;
    203 
    204 typedef struct {
    205     GNode	  **gn;
    206     Suff	   *s;
    207     Boolean	    r;
    208 } GNodeSuff;
    209 
    210 static Suff 	    *suffNull;	/* The NULL suffix for this run */
    211 static Suff 	    *emptySuff;	/* The empty suffix required for POSIX
    212 				 * single-suffix transformation rules */
    213 
    214 
    215 static const char *SuffStrIsPrefix(const char *, const char *);
    216 static char *SuffSuffIsSuffix(const Suff *, const SuffixCmpData *);
    217 static int SuffSuffIsSuffixP(const void *, const void *);
    218 static int SuffSuffHasNameP(const void *, const void *);
    219 static int SuffSuffIsPrefix(const void *, const void *);
    220 static int SuffGNHasNameP(const void *, const void *);
    221 static void SuffUnRef(void *, void *);
    222 static void SuffFree(void *);
    223 static void SuffInsert(Lst, Suff *);
    224 static void SuffRemove(Lst, Suff *);
    225 static Boolean SuffParseTransform(char *, Suff **, Suff **);
    226 static int SuffRebuildGraph(void *, void *);
    227 static int SuffScanTargets(void *, void *);
    228 static int SuffAddSrc(void *, void *);
    229 static int SuffRemoveSrc(Lst);
    230 static void SuffAddLevel(Lst, Src *);
    231 static Src *SuffFindThem(Lst, Lst);
    232 static Src *SuffFindCmds(Src *, Lst);
    233 static void SuffExpandChildren(LstNode, GNode *);
    234 static void SuffExpandWildcards(LstNode, GNode *);
    235 static Boolean SuffApplyTransform(GNode *, GNode *, Suff *, Suff *);
    236 static void SuffFindDeps(GNode *, Lst);
    237 static void SuffFindArchiveDeps(GNode *, Lst);
    238 static void SuffFindNormalDeps(GNode *, Lst);
    239 static int SuffPrintName(void *, void *);
    240 static int SuffPrintSuff(void *, void *);
    241 static int SuffPrintTrans(void *, void *);
    242 
    243 	/*************** Lst Predicates ****************/
    244 /*-
    245  *-----------------------------------------------------------------------
    246  * SuffStrIsPrefix  --
    247  *	See if pref is a prefix of str.
    248  *
    249  * Input:
    250  *	pref		possible prefix
    251  *	str		string to check
    252  *
    253  * Results:
    254  *	NULL if it ain't, pointer to character in str after prefix if so
    255  *
    256  * Side Effects:
    257  *	None
    258  *-----------------------------------------------------------------------
    259  */
    260 static const char *
    261 SuffStrIsPrefix(const char *pref, const char *str)
    262 {
    263     while (*str && *pref == *str) {
    264 	pref++;
    265 	str++;
    266     }
    267 
    268     return (*pref ? NULL : str);
    269 }
    270 
    271 /*-
    272  *-----------------------------------------------------------------------
    273  * SuffSuffIsSuffix  --
    274  *	See if suff is a suffix of str. sd->ename should point to THE END
    275  *	of the string to check. (THE END == the null byte)
    276  *
    277  * Input:
    278  *	s		possible suffix
    279  *	sd		string to examine
    280  *
    281  * Results:
    282  *	NULL if it ain't, pointer to character in str before suffix if
    283  *	it is.
    284  *
    285  * Side Effects:
    286  *	None
    287  *-----------------------------------------------------------------------
    288  */
    289 static char *
    290 SuffSuffIsSuffix(const Suff *s, const SuffixCmpData *sd)
    291 {
    292     char  *p1;	    	/* Pointer into suffix name */
    293     char  *p2;	    	/* Pointer into string being examined */
    294 
    295     if (sd->len < s->nameLen)
    296 	return NULL;		/* this string is shorter than the suffix */
    297 
    298     p1 = s->name + s->nameLen;
    299     p2 = sd->ename;
    300 
    301     while (p1 >= s->name && *p1 == *p2) {
    302 	p1--;
    303 	p2--;
    304     }
    305 
    306     return (p1 == s->name - 1 ? p2 : NULL);
    307 }
    308 
    309 /*-
    310  *-----------------------------------------------------------------------
    311  * SuffSuffIsSuffixP --
    312  *	Predicate form of SuffSuffIsSuffix. Passed as the callback function
    313  *	to Lst_Find.
    314  *
    315  * Results:
    316  *	0 if the suffix is the one desired, non-zero if not.
    317  *
    318  * Side Effects:
    319  *	None.
    320  *
    321  *-----------------------------------------------------------------------
    322  */
    323 static int
    324 SuffSuffIsSuffixP(const void *s, const void *sd)
    325 {
    326     return(!SuffSuffIsSuffix(s, sd));
    327 }
    328 
    329 /*-
    330  *-----------------------------------------------------------------------
    331  * SuffSuffHasNameP --
    332  *	Callback procedure for finding a suffix based on its name. Used by
    333  *	Suff_GetPath.
    334  *
    335  * Input:
    336  *	s		Suffix to check
    337  *	sd		Desired name
    338  *
    339  * Results:
    340  *	0 if the suffix is of the given name. non-zero otherwise.
    341  *
    342  * Side Effects:
    343  *	None
    344  *-----------------------------------------------------------------------
    345  */
    346 static int
    347 SuffSuffHasNameP(const void *s, const void *sname)
    348 {
    349     return (strcmp(sname, ((const Suff *)s)->name));
    350 }
    351 
    352 /*-
    353  *-----------------------------------------------------------------------
    354  * SuffSuffIsPrefix  --
    355  *	See if the suffix described by s is a prefix of the string. Care
    356  *	must be taken when using this to search for transformations and
    357  *	what-not, since there could well be two suffixes, one of which
    358  *	is a prefix of the other...
    359  *
    360  * Input:
    361  *	s		suffix to compare
    362  *	str		string to examine
    363  *
    364  * Results:
    365  *	0 if s is a prefix of str. non-zero otherwise
    366  *
    367  * Side Effects:
    368  *	None
    369  *-----------------------------------------------------------------------
    370  */
    371 static int
    372 SuffSuffIsPrefix(const void *s, const void *str)
    373 {
    374     return SuffStrIsPrefix(((const Suff *)s)->name, str) == NULL;
    375 }
    376 
    377 /*-
    378  *-----------------------------------------------------------------------
    379  * SuffGNHasNameP  --
    380  *	See if the graph node has the desired name
    381  *
    382  * Input:
    383  *	gn		current node we're looking at
    384  *	name		name we're looking for
    385  *
    386  * Results:
    387  *	0 if it does. non-zero if it doesn't
    388  *
    389  * Side Effects:
    390  *	None
    391  *-----------------------------------------------------------------------
    392  */
    393 static int
    394 SuffGNHasNameP(const void *gn, const void *name)
    395 {
    396     return (strcmp(name, ((const GNode *)gn)->name));
    397 }
    398 
    399  	    /*********** Maintenance Functions ************/
    400 
    401 static void
    402 SuffUnRef(void *lp, void *sp)
    403 {
    404     Lst l = (Lst) lp;
    405 
    406     LstNode ln = Lst_Member(l, sp);
    407     if (ln != NULL) {
    408 	Lst_Remove(l, ln);
    409 	((Suff *)sp)->refCount--;
    410     }
    411 }
    412 
    413 /*-
    414  *-----------------------------------------------------------------------
    415  * SuffFree  --
    416  *	Free up all memory associated with the given suffix structure.
    417  *
    418  * Results:
    419  *	none
    420  *
    421  * Side Effects:
    422  *	the suffix entry is detroyed
    423  *-----------------------------------------------------------------------
    424  */
    425 static void
    426 SuffFree(void *sp)
    427 {
    428     Suff           *s = (Suff *)sp;
    429 
    430     if (s == suffNull)
    431 	suffNull = NULL;
    432 
    433     if (s == emptySuff)
    434 	emptySuff = NULL;
    435 
    436 #ifdef notdef
    437     /* We don't delete suffixes in order, so we cannot use this */
    438     if (s->refCount)
    439 	Punt("Internal error deleting suffix `%s' with refcount = %d", s->name,
    440 	    s->refCount);
    441 #endif
    442 
    443     Lst_Destroy(s->ref, NULL);
    444     Lst_Destroy(s->children, NULL);
    445     Lst_Destroy(s->parents, NULL);
    446     Lst_Destroy(s->searchPath, Dir_Destroy);
    447 
    448     free(s->name);
    449     free(s);
    450 }
    451 
    452 /*-
    453  *-----------------------------------------------------------------------
    454  * SuffRemove  --
    455  *	Remove the suffix into the list
    456  *
    457  * Results:
    458  *	None
    459  *
    460  * Side Effects:
    461  *	The reference count for the suffix is decremented and the
    462  *	suffix is possibly freed
    463  *-----------------------------------------------------------------------
    464  */
    465 static void
    466 SuffRemove(Lst l, Suff *s)
    467 {
    468     SuffUnRef(l, s);
    469     if (s->refCount == 0) {
    470 	SuffUnRef(sufflist, s);
    471 	SuffFree(s);
    472     }
    473 }
    474 
    475 /*-
    477  *-----------------------------------------------------------------------
    478  * SuffInsert  --
    479  *	Insert the suffix into the list keeping the list ordered by suffix
    480  *	numbers.
    481  *
    482  * Input:
    483  *	l		the list where in s should be inserted
    484  *	s		the suffix to insert
    485  *
    486  * Results:
    487  *	None
    488  *
    489  * Side Effects:
    490  *	The reference count of the suffix is incremented
    491  *-----------------------------------------------------------------------
    492  */
    493 static void
    494 SuffInsert(Lst l, Suff *s)
    495 {
    496     LstNode 	  ln;		/* current element in l we're examining */
    497     Suff          *s2 = NULL;	/* the suffix descriptor in this element */
    498 
    499     if (Lst_Open(l) == FAILURE) {
    500 	return;
    501     }
    502     while ((ln = Lst_Next(l)) != NULL) {
    503 	s2 = (Suff *)Lst_Datum(ln);
    504 	if (s2->sNum >= s->sNum) {
    505 	    break;
    506 	}
    507     }
    508 
    509     Lst_Close(l);
    510     if (DEBUG(SUFF)) {
    511 	fprintf(debug_file, "inserting %s(%d)...", s->name, s->sNum);
    512     }
    513     if (ln == NULL) {
    514 	if (DEBUG(SUFF)) {
    515 	    fprintf(debug_file, "at end of list\n");
    516 	}
    517 	(void)Lst_AtEnd(l, s);
    518 	s->refCount++;
    519 	(void)Lst_AtEnd(s->ref, l);
    520     } else if (s2->sNum != s->sNum) {
    521 	if (DEBUG(SUFF)) {
    522 	    fprintf(debug_file, "before %s(%d)\n", s2->name, s2->sNum);
    523 	}
    524 	(void)Lst_InsertBefore(l, ln, s);
    525 	s->refCount++;
    526 	(void)Lst_AtEnd(s->ref, l);
    527     } else if (DEBUG(SUFF)) {
    528 	fprintf(debug_file, "already there\n");
    529     }
    530 }
    531 
    532 /*-
    533  *-----------------------------------------------------------------------
    534  * Suff_ClearSuffixes --
    535  *	This is gross. Nuke the list of suffixes but keep all transformation
    536  *	rules around. The transformation graph is destroyed in this process,
    537  *	but we leave the list of rules so when a new graph is formed the rules
    538  *	will remain.
    539  *	This function is called from the parse module when a
    540  *	.SUFFIXES:\n line is encountered.
    541  *
    542  * Results:
    543  *	none
    544  *
    545  * Side Effects:
    546  *	the sufflist and its graph nodes are destroyed
    547  *-----------------------------------------------------------------------
    548  */
    549 void
    550 Suff_ClearSuffixes(void)
    551 {
    552 #ifdef CLEANUP
    553     Lst_Concat(suffClean, sufflist, LST_CONCLINK);
    554 #endif
    555     sufflist = Lst_Init(FALSE);
    556     sNum = 0;
    557     if (suffNull)
    558 	SuffFree(suffNull);
    559     emptySuff = suffNull = bmake_malloc(sizeof(Suff));
    560 
    561     suffNull->name =   	    bmake_strdup("");
    562     suffNull->nameLen =     0;
    563     suffNull->searchPath =  Lst_Init(FALSE);
    564     Dir_Concat(suffNull->searchPath, dirSearchPath);
    565     suffNull->children =    Lst_Init(FALSE);
    566     suffNull->parents =	    Lst_Init(FALSE);
    567     suffNull->ref =	    Lst_Init(FALSE);
    568     suffNull->sNum =   	    sNum++;
    569     suffNull->flags =  	    SUFF_NULL;
    570     suffNull->refCount =    1;
    571 }
    572 
    573 /*-
    574  *-----------------------------------------------------------------------
    575  * SuffParseTransform --
    576  *	Parse a transformation string to find its two component suffixes.
    577  *
    578  * Input:
    579  *	str		String being parsed
    580  *	srcPtr		Place to store source of trans.
    581  *	targPtr		Place to store target of trans.
    582  *
    583  * Results:
    584  *	TRUE if the string is a valid transformation and FALSE otherwise.
    585  *
    586  * Side Effects:
    587  *	The passed pointers are overwritten.
    588  *
    589  *-----------------------------------------------------------------------
    590  */
    591 static Boolean
    592 SuffParseTransform(char *str, Suff **srcPtr, Suff **targPtr)
    593 {
    594     LstNode		srcLn;	    /* element in suffix list of trans source*/
    595     Suff		*src;	    /* Source of transformation */
    596     LstNode		targLn;	    /* element in suffix list of trans target*/
    597     char		*str2;	    /* Extra pointer (maybe target suffix) */
    598     LstNode 	    	singleLn;   /* element in suffix list of any suffix
    599 				     * that exactly matches str */
    600     Suff    	    	*single = NULL;/* Source of possible transformation to
    601 				     * null suffix */
    602 
    603     srcLn = NULL;
    604     singleLn = NULL;
    605 
    606     /*
    607      * Loop looking first for a suffix that matches the start of the
    608      * string and then for one that exactly matches the rest of it. If
    609      * we can find two that meet these criteria, we've successfully
    610      * parsed the string.
    611      */
    612     for (;;) {
    613 	if (srcLn == NULL) {
    614 	    srcLn = Lst_Find(sufflist, str, SuffSuffIsPrefix);
    615 	} else {
    616 	    srcLn = Lst_FindFrom(sufflist, Lst_Succ(srcLn), str,
    617 				  SuffSuffIsPrefix);
    618 	}
    619 	if (srcLn == NULL) {
    620 	    /*
    621 	     * Ran out of source suffixes -- no such rule
    622 	     */
    623 	    if (singleLn != NULL) {
    624 		/*
    625 		 * Not so fast Mr. Smith! There was a suffix that encompassed
    626 		 * the entire string, so we assume it was a transformation
    627 		 * to the null suffix (thank you POSIX). We still prefer to
    628 		 * find a double rule over a singleton, hence we leave this
    629 		 * check until the end.
    630 		 *
    631 		 * XXX: Use emptySuff over suffNull?
    632 		 */
    633 		*srcPtr = single;
    634 		*targPtr = suffNull;
    635 		return(TRUE);
    636 	    }
    637 	    return (FALSE);
    638 	}
    639 	src = (Suff *)Lst_Datum(srcLn);
    640 	str2 = str + src->nameLen;
    641 	if (*str2 == '\0') {
    642 	    single = src;
    643 	    singleLn = srcLn;
    644 	} else {
    645 	    targLn = Lst_Find(sufflist, str2, SuffSuffHasNameP);
    646 	    if (targLn != NULL) {
    647 		*srcPtr = src;
    648 		*targPtr = (Suff *)Lst_Datum(targLn);
    649 		return (TRUE);
    650 	    }
    651 	}
    652     }
    653 }
    654 
    655 /*-
    656  *-----------------------------------------------------------------------
    657  * Suff_IsTransform  --
    658  *	Return TRUE if the given string is a transformation rule
    659  *
    660  *
    661  * Input:
    662  *	str		string to check
    663  *
    664  * Results:
    665  *	TRUE if the string is a concatenation of two known suffixes.
    666  *	FALSE otherwise
    667  *
    668  * Side Effects:
    669  *	None
    670  *-----------------------------------------------------------------------
    671  */
    672 Boolean
    673 Suff_IsTransform(char *str)
    674 {
    675     Suff    	  *src, *targ;
    676 
    677     return (SuffParseTransform(str, &src, &targ));
    678 }
    679 
    680 /*-
    681  *-----------------------------------------------------------------------
    682  * Suff_AddTransform --
    683  *	Add the transformation rule described by the line to the
    684  *	list of rules and place the transformation itself in the graph
    685  *
    686  * Input:
    687  *	line		name of transformation to add
    688  *
    689  * Results:
    690  *	The node created for the transformation in the transforms list
    691  *
    692  * Side Effects:
    693  *	The node is placed on the end of the transforms Lst and links are
    694  *	made between the two suffixes mentioned in the target name
    695  *-----------------------------------------------------------------------
    696  */
    697 GNode *
    698 Suff_AddTransform(char *line)
    699 {
    700     GNode         *gn;		/* GNode of transformation rule */
    701     Suff          *s,		/* source suffix */
    702                   *t;		/* target suffix */
    703     LstNode 	  ln;	    	/* Node for existing transformation */
    704 
    705     ln = Lst_Find(transforms, line, SuffGNHasNameP);
    706     if (ln == NULL) {
    707 	/*
    708 	 * Make a new graph node for the transformation. It will be filled in
    709 	 * by the Parse module.
    710 	 */
    711 	gn = Targ_NewGN(line);
    712 	(void)Lst_AtEnd(transforms, gn);
    713     } else {
    714 	/*
    715 	 * New specification for transformation rule. Just nuke the old list
    716 	 * of commands so they can be filled in again... We don't actually
    717 	 * free the commands themselves, because a given command can be
    718 	 * attached to several different transformations.
    719 	 */
    720 	gn = (GNode *)Lst_Datum(ln);
    721 	Lst_Destroy(gn->commands, NULL);
    722 	Lst_Destroy(gn->children, NULL);
    723 	gn->commands = Lst_Init(FALSE);
    724 	gn->children = Lst_Init(FALSE);
    725     }
    726 
    727     gn->type = OP_TRANSFORM;
    728 
    729     (void)SuffParseTransform(line, &s, &t);
    730 
    731     /*
    732      * link the two together in the proper relationship and order
    733      */
    734     if (DEBUG(SUFF)) {
    735 	fprintf(debug_file, "defining transformation from `%s' to `%s'\n",
    736 		s->name, t->name);
    737     }
    738     SuffInsert(t->children, s);
    739     SuffInsert(s->parents, t);
    740 
    741     return (gn);
    742 }
    743 
    744 /*-
    745  *-----------------------------------------------------------------------
    746  * Suff_EndTransform --
    747  *	Handle the finish of a transformation definition, removing the
    748  *	transformation from the graph if it has neither commands nor
    749  *	sources. This is a callback procedure for the Parse module via
    750  *	Lst_ForEach
    751  *
    752  * Input:
    753  *	gnp		Node for transformation
    754  *	dummy		Node for transformation
    755  *
    756  * Results:
    757  *	=== 0
    758  *
    759  * Side Effects:
    760  *	If the node has no commands or children, the children and parents
    761  *	lists of the affected suffixes are altered.
    762  *
    763  *-----------------------------------------------------------------------
    764  */
    765 int
    766 Suff_EndTransform(void *gnp, void *dummy MAKE_ATTR_UNUSED)
    767 {
    768     GNode *gn = (GNode *)gnp;
    769 
    770     if ((gn->type & OP_DOUBLEDEP) && !Lst_IsEmpty (gn->cohorts))
    771 	gn = (GNode *)Lst_Datum(Lst_Last(gn->cohorts));
    772     if ((gn->type & OP_TRANSFORM) && Lst_IsEmpty(gn->commands) &&
    773 	Lst_IsEmpty(gn->children))
    774     {
    775 	Suff	*s, *t;
    776 
    777 	/*
    778 	 * SuffParseTransform() may fail for special rules which are not
    779 	 * actual transformation rules. (e.g. .DEFAULT)
    780 	 */
    781 	if (SuffParseTransform(gn->name, &s, &t)) {
    782 	    Lst	 p;
    783 
    784 	    if (DEBUG(SUFF)) {
    785 		fprintf(debug_file, "deleting transformation from `%s' to `%s'\n",
    786 		s->name, t->name);
    787 	    }
    788 
    789 	    /*
    790 	     * Store s->parents because s could be deleted in SuffRemove
    791 	     */
    792 	    p = s->parents;
    793 
    794 	    /*
    795 	     * Remove the source from the target's children list. We check for a
    796 	     * nil return to handle a beanhead saying something like
    797 	     *  .c.o .c.o:
    798 	     *
    799 	     * We'll be called twice when the next target is seen, but .c and .o
    800 	     * are only linked once...
    801 	     */
    802 	    SuffRemove(t->children, s);
    803 
    804 	    /*
    805 	     * Remove the target from the source's parents list
    806 	     */
    807 	    SuffRemove(p, t);
    808 	}
    809     } else if ((gn->type & OP_TRANSFORM) && DEBUG(SUFF)) {
    810 	fprintf(debug_file, "transformation %s complete\n", gn->name);
    811     }
    812 
    813     return 0;
    814 }
    815 
    816 /*-
    817  *-----------------------------------------------------------------------
    818  * SuffRebuildGraph --
    819  *	Called from Suff_AddSuffix via Lst_ForEach to search through the
    820  *	list of existing transformation rules and rebuild the transformation
    821  *	graph when it has been destroyed by Suff_ClearSuffixes. If the
    822  *	given rule is a transformation involving this suffix and another,
    823  *	existing suffix, the proper relationship is established between
    824  *	the two.
    825  *
    826  * Input:
    827  *	transformp	Transformation to test
    828  *	sp		Suffix to rebuild
    829  *
    830  * Results:
    831  *	Always 0.
    832  *
    833  * Side Effects:
    834  *	The appropriate links will be made between this suffix and
    835  *	others if transformation rules exist for it.
    836  *
    837  *-----------------------------------------------------------------------
    838  */
    839 static int
    840 SuffRebuildGraph(void *transformp, void *sp)
    841 {
    842     GNode   	*transform = (GNode *)transformp;
    843     Suff    	*s = (Suff *)sp;
    844     char 	*cp;
    845     LstNode	ln;
    846     Suff  	*s2;
    847     SuffixCmpData sd;
    848 
    849     /*
    850      * First see if it is a transformation from this suffix.
    851      */
    852     cp = UNCONST(SuffStrIsPrefix(s->name, transform->name));
    853     if (cp != NULL) {
    854 	ln = Lst_Find(sufflist, cp, SuffSuffHasNameP);
    855 	if (ln != NULL) {
    856 	    /*
    857 	     * Found target. Link in and return, since it can't be anything
    858 	     * else.
    859 	     */
    860 	    s2 = (Suff *)Lst_Datum(ln);
    861 	    SuffInsert(s2->children, s);
    862 	    SuffInsert(s->parents, s2);
    863 	    return(0);
    864 	}
    865     }
    866 
    867     /*
    868      * Not from, maybe to?
    869      */
    870     sd.len = strlen(transform->name);
    871     sd.ename = transform->name + sd.len;
    872     cp = SuffSuffIsSuffix(s, &sd);
    873     if (cp != NULL) {
    874 	/*
    875 	 * Null-terminate the source suffix in order to find it.
    876 	 */
    877 	cp[1] = '\0';
    878 	ln = Lst_Find(sufflist, transform->name, SuffSuffHasNameP);
    879 	/*
    880 	 * Replace the start of the target suffix
    881 	 */
    882 	cp[1] = s->name[0];
    883 	if (ln != NULL) {
    884 	    /*
    885 	     * Found it -- establish the proper relationship
    886 	     */
    887 	    s2 = (Suff *)Lst_Datum(ln);
    888 	    SuffInsert(s->children, s2);
    889 	    SuffInsert(s2->parents, s);
    890 	}
    891     }
    892     return(0);
    893 }
    894 
    895 /*-
    896  *-----------------------------------------------------------------------
    897  * SuffScanTargets --
    898  *	Called from Suff_AddSuffix via Lst_ForEach to search through the
    899  *	list of existing targets and find if any of the existing targets
    900  *	can be turned into a transformation rule.
    901  *
    902  * Results:
    903  *	1 if a new main target has been selected, 0 otherwise.
    904  *
    905  * Side Effects:
    906  *	If such a target is found and the target is the current main
    907  *	target, the main target is set to NULL and the next target
    908  *	examined (if that exists) becomes the main target.
    909  *
    910  *-----------------------------------------------------------------------
    911  */
    912 static int
    913 SuffScanTargets(void *targetp, void *gsp)
    914 {
    915     GNode   	*target = (GNode *)targetp;
    916     GNodeSuff	*gs = (GNodeSuff *)gsp;
    917     Suff	*s, *t;
    918     char 	*ptr;
    919 
    920     if (*gs->gn == NULL && gs->r && (target->type & OP_NOTARGET) == 0) {
    921 	*gs->gn = target;
    922 	Targ_SetMain(target);
    923 	return 1;
    924     }
    925 
    926     if ((unsigned int)target->type == OP_TRANSFORM)
    927 	return 0;
    928 
    929     if ((ptr = strstr(target->name, gs->s->name)) == NULL ||
    930 	ptr == target->name)
    931 	return 0;
    932 
    933     if (SuffParseTransform(target->name, &s, &t)) {
    934 	if (*gs->gn == target) {
    935 	    gs->r = TRUE;
    936 	    *gs->gn = NULL;
    937 	    Targ_SetMain(NULL);
    938 	}
    939 	Lst_Destroy(target->children, NULL);
    940 	target->children = Lst_Init(FALSE);
    941 	target->type = OP_TRANSFORM;
    942 	/*
    943 	 * link the two together in the proper relationship and order
    944 	 */
    945 	if (DEBUG(SUFF)) {
    946 	    fprintf(debug_file, "defining transformation from `%s' to `%s'\n",
    947 		s->name, t->name);
    948 	}
    949 	SuffInsert(t->children, s);
    950 	SuffInsert(s->parents, t);
    951     }
    952     return 0;
    953 }
    954 
    955 /*-
    956  *-----------------------------------------------------------------------
    957  * Suff_AddSuffix --
    958  *	Add the suffix in string to the end of the list of known suffixes.
    959  *	Should we restructure the suffix graph? Make doesn't...
    960  *
    961  * Input:
    962  *	str		the name of the suffix to add
    963  *
    964  * Results:
    965  *	None
    966  *
    967  * Side Effects:
    968  *	A GNode is created for the suffix and a Suff structure is created and
    969  *	added to the suffixes list unless the suffix was already known.
    970  *	The mainNode passed can be modified if a target mutated into a
    971  *	transform and that target happened to be the main target.
    972  *-----------------------------------------------------------------------
    973  */
    974 void
    975 Suff_AddSuffix(char *str, GNode **gn)
    976 {
    977     Suff          *s;	    /* new suffix descriptor */
    978     LstNode 	  ln;
    979     GNodeSuff	  gs;
    980 
    981     ln = Lst_Find(sufflist, str, SuffSuffHasNameP);
    982     if (ln == NULL) {
    983 	s = bmake_malloc(sizeof(Suff));
    984 
    985 	s->name =   	bmake_strdup(str);
    986 	s->nameLen = 	strlen(s->name);
    987 	s->searchPath = Lst_Init(FALSE);
    988 	s->children = 	Lst_Init(FALSE);
    989 	s->parents = 	Lst_Init(FALSE);
    990 	s->ref = 	Lst_Init(FALSE);
    991 	s->sNum =   	sNum++;
    992 	s->flags =  	0;
    993 	s->refCount =	1;
    994 
    995 	(void)Lst_AtEnd(sufflist, s);
    996 	/*
    997 	 * We also look at our existing targets list to see if adding
    998 	 * this suffix will make one of our current targets mutate into
    999 	 * a suffix rule. This is ugly, but other makes treat all targets
   1000 	 * that start with a . as suffix rules.
   1001 	 */
   1002 	gs.gn = gn;
   1003 	gs.s  = s;
   1004 	gs.r  = FALSE;
   1005 	Lst_ForEach(Targ_List(), SuffScanTargets, &gs);
   1006 	/*
   1007 	 * Look for any existing transformations from or to this suffix.
   1008 	 * XXX: Only do this after a Suff_ClearSuffixes?
   1009 	 */
   1010 	Lst_ForEach(transforms, SuffRebuildGraph, s);
   1011     }
   1012 }
   1013 
   1014 /*-
   1015  *-----------------------------------------------------------------------
   1016  * Suff_GetPath --
   1017  *	Return the search path for the given suffix, if it's defined.
   1018  *
   1019  * Results:
   1020  *	The searchPath for the desired suffix or NULL if the suffix isn't
   1021  *	defined.
   1022  *
   1023  * Side Effects:
   1024  *	None
   1025  *-----------------------------------------------------------------------
   1026  */
   1027 Lst
   1028 Suff_GetPath(char *sname)
   1029 {
   1030     LstNode   	  ln;
   1031     Suff    	  *s;
   1032 
   1033     ln = Lst_Find(sufflist, sname, SuffSuffHasNameP);
   1034     if (ln == NULL) {
   1035 	return NULL;
   1036     } else {
   1037 	s = (Suff *)Lst_Datum(ln);
   1038 	return (s->searchPath);
   1039     }
   1040 }
   1041 
   1042 /*-
   1043  *-----------------------------------------------------------------------
   1044  * Suff_DoPaths --
   1045  *	Extend the search paths for all suffixes to include the default
   1046  *	search path.
   1047  *
   1048  * Results:
   1049  *	None.
   1050  *
   1051  * Side Effects:
   1052  *	The searchPath field of all the suffixes is extended by the
   1053  *	directories in dirSearchPath. If paths were specified for the
   1054  *	".h" suffix, the directories are stuffed into a global variable
   1055  *	called ".INCLUDES" with each directory preceded by a -I. The same
   1056  *	is done for the ".a" suffix, except the variable is called
   1057  *	".LIBS" and the flag is -L.
   1058  *-----------------------------------------------------------------------
   1059  */
   1060 void
   1061 Suff_DoPaths(void)
   1062 {
   1063     Suff	   	*s;
   1064     LstNode  		ln;
   1065     char		*ptr;
   1066     Lst	    	    	inIncludes; /* Cumulative .INCLUDES path */
   1067     Lst	    	    	inLibs;	    /* Cumulative .LIBS path */
   1068 
   1069     if (Lst_Open(sufflist) == FAILURE) {
   1070 	return;
   1071     }
   1072 
   1073     inIncludes = Lst_Init(FALSE);
   1074     inLibs = Lst_Init(FALSE);
   1075 
   1076     while ((ln = Lst_Next(sufflist)) != NULL) {
   1077 	s = (Suff *)Lst_Datum(ln);
   1078 	if (!Lst_IsEmpty (s->searchPath)) {
   1079 #ifdef INCLUDES
   1080 	    if (s->flags & SUFF_INCLUDE) {
   1081 		Dir_Concat(inIncludes, s->searchPath);
   1082 	    }
   1083 #endif /* INCLUDES */
   1084 #ifdef LIBRARIES
   1085 	    if (s->flags & SUFF_LIBRARY) {
   1086 		Dir_Concat(inLibs, s->searchPath);
   1087 	    }
   1088 #endif /* LIBRARIES */
   1089 	    Dir_Concat(s->searchPath, dirSearchPath);
   1090 	} else {
   1091 	    Lst_Destroy(s->searchPath, Dir_Destroy);
   1092 	    s->searchPath = Lst_Duplicate(dirSearchPath, Dir_CopyDir);
   1093 	}
   1094     }
   1095 
   1096     Var_Set(".INCLUDES", ptr = Dir_MakeFlags("-I", inIncludes), VAR_GLOBAL, 0);
   1097     free(ptr);
   1098     Var_Set(".LIBS", ptr = Dir_MakeFlags("-L", inLibs), VAR_GLOBAL, 0);
   1099     free(ptr);
   1100 
   1101     Lst_Destroy(inIncludes, Dir_Destroy);
   1102     Lst_Destroy(inLibs, Dir_Destroy);
   1103 
   1104     Lst_Close(sufflist);
   1105 }
   1106 
   1107 /*-
   1108  *-----------------------------------------------------------------------
   1109  * Suff_AddInclude --
   1110  *	Add the given suffix as a type of file which gets included.
   1111  *	Called from the parse module when a .INCLUDES line is parsed.
   1112  *	The suffix must have already been defined.
   1113  *
   1114  * Input:
   1115  *	sname		Name of the suffix to mark
   1116  *
   1117  * Results:
   1118  *	None.
   1119  *
   1120  * Side Effects:
   1121  *	The SUFF_INCLUDE bit is set in the suffix's flags field
   1122  *
   1123  *-----------------------------------------------------------------------
   1124  */
   1125 void
   1126 Suff_AddInclude(char *sname)
   1127 {
   1128     LstNode	  ln;
   1129     Suff	  *s;
   1130 
   1131     ln = Lst_Find(sufflist, sname, SuffSuffHasNameP);
   1132     if (ln != NULL) {
   1133 	s = (Suff *)Lst_Datum(ln);
   1134 	s->flags |= SUFF_INCLUDE;
   1135     }
   1136 }
   1137 
   1138 /*-
   1139  *-----------------------------------------------------------------------
   1140  * Suff_AddLib --
   1141  *	Add the given suffix as a type of file which is a library.
   1142  *	Called from the parse module when parsing a .LIBS line. The
   1143  *	suffix must have been defined via .SUFFIXES before this is
   1144  *	called.
   1145  *
   1146  * Input:
   1147  *	sname		Name of the suffix to mark
   1148  *
   1149  * Results:
   1150  *	None.
   1151  *
   1152  * Side Effects:
   1153  *	The SUFF_LIBRARY bit is set in the suffix's flags field
   1154  *
   1155  *-----------------------------------------------------------------------
   1156  */
   1157 void
   1158 Suff_AddLib(char *sname)
   1159 {
   1160     LstNode	  ln;
   1161     Suff	  *s;
   1162 
   1163     ln = Lst_Find(sufflist, sname, SuffSuffHasNameP);
   1164     if (ln != NULL) {
   1165 	s = (Suff *)Lst_Datum(ln);
   1166 	s->flags |= SUFF_LIBRARY;
   1167     }
   1168 }
   1169 
   1170  	  /********** Implicit Source Search Functions *********/
   1171 
   1172 /*-
   1173  *-----------------------------------------------------------------------
   1174  * SuffAddSrc  --
   1175  *	Add a suffix as a Src structure to the given list with its parent
   1176  *	being the given Src structure. If the suffix is the null suffix,
   1177  *	the prefix is used unaltered as the file name in the Src structure.
   1178  *
   1179  * Input:
   1180  *	sp		suffix for which to create a Src structure
   1181  *	lsp		list and parent for the new Src
   1182  *
   1183  * Results:
   1184  *	always returns 0
   1185  *
   1186  * Side Effects:
   1187  *	A Src structure is created and tacked onto the end of the list
   1188  *-----------------------------------------------------------------------
   1189  */
   1190 static int
   1191 SuffAddSrc(void *sp, void *lsp)
   1192 {
   1193     Suff	*s = (Suff *)sp;
   1194     LstSrc      *ls = (LstSrc *)lsp;
   1195     Src         *s2;	    /* new Src structure */
   1196     Src    	*targ; 	    /* Target structure */
   1197 
   1198     targ = ls->s;
   1199 
   1200     if ((s->flags & SUFF_NULL) && (*s->name != '\0')) {
   1201 	/*
   1202 	 * If the suffix has been marked as the NULL suffix, also create a Src
   1203 	 * structure for a file with no suffix attached. Two birds, and all
   1204 	 * that...
   1205 	 */
   1206 	s2 = bmake_malloc(sizeof(Src));
   1207 	s2->file =  	bmake_strdup(targ->pref);
   1208 	s2->pref =  	targ->pref;
   1209 	s2->parent = 	targ;
   1210 	s2->node =  	NULL;
   1211 	s2->suff =  	s;
   1212 	s->refCount++;
   1213 	s2->children =	0;
   1214 	targ->children += 1;
   1215 	(void)Lst_AtEnd(ls->l, s2);
   1216 #ifdef DEBUG_SRC
   1217 	s2->cp = Lst_Init(FALSE);
   1218 	Lst_AtEnd(targ->cp, s2);
   1219 	fprintf(debug_file, "1 add %p %p to %p:", targ, s2, ls->l);
   1220 	Lst_ForEach(ls->l, PrintAddr, NULL);
   1221 	fprintf(debug_file, "\n");
   1222 #endif
   1223     }
   1224     s2 = bmake_malloc(sizeof(Src));
   1225     s2->file = 	    str_concat(targ->pref, s->name, 0);
   1226     s2->pref =	    targ->pref;
   1227     s2->parent =    targ;
   1228     s2->node = 	    NULL;
   1229     s2->suff = 	    s;
   1230     s->refCount++;
   1231     s2->children =  0;
   1232     targ->children += 1;
   1233     (void)Lst_AtEnd(ls->l, s2);
   1234 #ifdef DEBUG_SRC
   1235     s2->cp = Lst_Init(FALSE);
   1236     Lst_AtEnd(targ->cp, s2);
   1237     fprintf(debug_file, "2 add %p %p to %p:", targ, s2, ls->l);
   1238     Lst_ForEach(ls->l, PrintAddr, NULL);
   1239     fprintf(debug_file, "\n");
   1240 #endif
   1241 
   1242     return(0);
   1243 }
   1244 
   1245 /*-
   1246  *-----------------------------------------------------------------------
   1247  * SuffAddLevel  --
   1248  *	Add all the children of targ as Src structures to the given list
   1249  *
   1250  * Input:
   1251  *	l		list to which to add the new level
   1252  *	targ		Src structure to use as the parent
   1253  *
   1254  * Results:
   1255  *	None
   1256  *
   1257  * Side Effects:
   1258  * 	Lots of structures are created and added to the list
   1259  *-----------------------------------------------------------------------
   1260  */
   1261 static void
   1262 SuffAddLevel(Lst l, Src *targ)
   1263 {
   1264     LstSrc         ls;
   1265 
   1266     ls.s = targ;
   1267     ls.l = l;
   1268 
   1269     Lst_ForEach(targ->suff->children, SuffAddSrc, &ls);
   1270 }
   1271 
   1272 /*-
   1273  *----------------------------------------------------------------------
   1274  * SuffRemoveSrc --
   1275  *	Free all src structures in list that don't have a reference count
   1276  *
   1277  * Results:
   1278  *	Ture if an src was removed
   1279  *
   1280  * Side Effects:
   1281  *	The memory is free'd.
   1282  *----------------------------------------------------------------------
   1283  */
   1284 static int
   1285 SuffRemoveSrc(Lst l)
   1286 {
   1287     LstNode ln;
   1288     Src *s;
   1289     int t = 0;
   1290 
   1291     if (Lst_Open(l) == FAILURE) {
   1292 	return 0;
   1293     }
   1294 #ifdef DEBUG_SRC
   1295     fprintf(debug_file, "cleaning %lx: ", (unsigned long) l);
   1296     Lst_ForEach(l, PrintAddr, NULL);
   1297     fprintf(debug_file, "\n");
   1298 #endif
   1299 
   1300 
   1301     while ((ln = Lst_Next(l)) != NULL) {
   1302 	s = (Src *)Lst_Datum(ln);
   1303 	if (s->children == 0) {
   1304 	    free(s->file);
   1305 	    if (!s->parent)
   1306 		free(s->pref);
   1307 	    else {
   1308 #ifdef DEBUG_SRC
   1309 		LstNode ln2 = Lst_Member(s->parent->cp, s);
   1310 		if (ln2 != NULL)
   1311 		    Lst_Remove(s->parent->cp, ln2);
   1312 #endif
   1313 		--s->parent->children;
   1314 	    }
   1315 #ifdef DEBUG_SRC
   1316 	    fprintf(debug_file, "free: [l=%p] p=%p %d\n", l, s, s->children);
   1317 	    Lst_Destroy(s->cp, NULL);
   1318 #endif
   1319 	    Lst_Remove(l, ln);
   1320 	    free(s);
   1321 	    t |= 1;
   1322 	    Lst_Close(l);
   1323 	    return TRUE;
   1324 	}
   1325 #ifdef DEBUG_SRC
   1326 	else {
   1327 	    fprintf(debug_file, "keep: [l=%p] p=%p %d: ", l, s, s->children);
   1328 	    Lst_ForEach(s->cp, PrintAddr, NULL);
   1329 	    fprintf(debug_file, "\n");
   1330 	}
   1331 #endif
   1332     }
   1333 
   1334     Lst_Close(l);
   1335 
   1336     return t;
   1337 }
   1338 
   1339 /*-
   1340  *-----------------------------------------------------------------------
   1341  * SuffFindThem --
   1342  *	Find the first existing file/target in the list srcs
   1343  *
   1344  * Input:
   1345  *	srcs		list of Src structures to search through
   1346  *
   1347  * Results:
   1348  *	The lowest structure in the chain of transformations
   1349  *
   1350  * Side Effects:
   1351  *	None
   1352  *-----------------------------------------------------------------------
   1353  */
   1354 static Src *
   1355 SuffFindThem(Lst srcs, Lst slst)
   1356 {
   1357     Src            *s;		/* current Src */
   1358     Src		   *rs;		/* returned Src */
   1359     char	   *ptr;
   1360 
   1361     rs = NULL;
   1362 
   1363     while (!Lst_IsEmpty (srcs)) {
   1364 	s = (Src *)Lst_DeQueue(srcs);
   1365 
   1366 	if (DEBUG(SUFF)) {
   1367 	    fprintf(debug_file, "\ttrying %s...", s->file);
   1368 	}
   1369 
   1370 	/*
   1371 	 * A file is considered to exist if either a node exists in the
   1372 	 * graph for it or the file actually exists.
   1373 	 */
   1374 	if (Targ_FindNode(s->file, TARG_NOCREATE) != NULL) {
   1375 #ifdef DEBUG_SRC
   1376 	    fprintf(debug_file, "remove %p from %p\n", s, srcs);
   1377 #endif
   1378 	    rs = s;
   1379 	    break;
   1380 	}
   1381 
   1382 	if ((ptr = Dir_FindFile(s->file, s->suff->searchPath)) != NULL) {
   1383 	    rs = s;
   1384 #ifdef DEBUG_SRC
   1385 	    fprintf(debug_file, "remove %p from %p\n", s, srcs);
   1386 #endif
   1387 	    free(ptr);
   1388 	    break;
   1389 	}
   1390 
   1391 	if (DEBUG(SUFF)) {
   1392 	    fprintf(debug_file, "not there\n");
   1393 	}
   1394 
   1395 	SuffAddLevel(srcs, s);
   1396 	Lst_AtEnd(slst, s);
   1397     }
   1398 
   1399     if (DEBUG(SUFF) && rs) {
   1400 	fprintf(debug_file, "got it\n");
   1401     }
   1402     return (rs);
   1403 }
   1404 
   1405 /*-
   1406  *-----------------------------------------------------------------------
   1407  * SuffFindCmds --
   1408  *	See if any of the children of the target in the Src structure is
   1409  *	one from which the target can be transformed. If there is one,
   1410  *	a Src structure is put together for it and returned.
   1411  *
   1412  * Input:
   1413  *	targ		Src structure to play with
   1414  *
   1415  * Results:
   1416  *	The Src structure of the "winning" child, or NULL if no such beast.
   1417  *
   1418  * Side Effects:
   1419  *	A Src structure may be allocated.
   1420  *
   1421  *-----------------------------------------------------------------------
   1422  */
   1423 static Src *
   1424 SuffFindCmds(Src *targ, Lst slst)
   1425 {
   1426     LstNode 	  	ln; 	/* General-purpose list node */
   1427     GNode		*t, 	/* Target GNode */
   1428 	    	  	*s; 	/* Source GNode */
   1429     int	    	  	prefLen;/* The length of the defined prefix */
   1430     Suff    	  	*suff;	/* Suffix on matching beastie */
   1431     Src	    	  	*ret;	/* Return value */
   1432     char    	  	*cp;
   1433 
   1434     t = targ->node;
   1435     (void)Lst_Open(t->children);
   1436     prefLen = strlen(targ->pref);
   1437 
   1438     for (;;) {
   1439 	ln = Lst_Next(t->children);
   1440 	if (ln == NULL) {
   1441 	    Lst_Close(t->children);
   1442 	    return NULL;
   1443 	}
   1444 	s = (GNode *)Lst_Datum(ln);
   1445 
   1446 	if (s->type & OP_OPTIONAL && Lst_IsEmpty(t->commands)) {
   1447 	    /*
   1448 	     * We haven't looked to see if .OPTIONAL files exist yet, so
   1449 	     * don't use one as the implicit source.
   1450 	     * This allows us to use .OPTIONAL in .depend files so make won't
   1451 	     * complain "don't know how to make xxx.h' when a dependent file
   1452 	     * has been moved/deleted.
   1453 	     */
   1454 	    continue;
   1455 	}
   1456 
   1457 	cp = strrchr(s->name, '/');
   1458 	if (cp == NULL) {
   1459 	    cp = s->name;
   1460 	} else {
   1461 	    cp++;
   1462 	}
   1463 	if (strncmp(cp, targ->pref, prefLen) != 0)
   1464 	    continue;
   1465 	/*
   1466 	 * The node matches the prefix ok, see if it has a known
   1467 	 * suffix.
   1468 	 */
   1469 	ln = Lst_Find(sufflist, &cp[prefLen], SuffSuffHasNameP);
   1470 	if (ln == NULL)
   1471 	    continue;
   1472 	/*
   1473 	 * It even has a known suffix, see if there's a transformation
   1474 	 * defined between the node's suffix and the target's suffix.
   1475 	 *
   1476 	 * XXX: Handle multi-stage transformations here, too.
   1477 	 */
   1478 	suff = (Suff *)Lst_Datum(ln);
   1479 
   1480 	if (Lst_Member(suff->parents, targ->suff) != NULL)
   1481 	    break;
   1482     }
   1483 
   1484     /*
   1485      * Hot Damn! Create a new Src structure to describe
   1486      * this transformation (making sure to duplicate the
   1487      * source node's name so Suff_FindDeps can free it
   1488      * again (ick)), and return the new structure.
   1489      */
   1490     ret = bmake_malloc(sizeof(Src));
   1491     ret->file = bmake_strdup(s->name);
   1492     ret->pref = targ->pref;
   1493     ret->suff = suff;
   1494     suff->refCount++;
   1495     ret->parent = targ;
   1496     ret->node = s;
   1497     ret->children = 0;
   1498     targ->children += 1;
   1499 #ifdef DEBUG_SRC
   1500     ret->cp = Lst_Init(FALSE);
   1501     fprintf(debug_file, "3 add %p %p\n", targ, ret);
   1502     Lst_AtEnd(targ->cp, ret);
   1503 #endif
   1504     Lst_AtEnd(slst, ret);
   1505     if (DEBUG(SUFF)) {
   1506 	fprintf(debug_file, "\tusing existing source %s\n", s->name);
   1507     }
   1508     return (ret);
   1509 }
   1510 
   1511 /*-
   1512  *-----------------------------------------------------------------------
   1513  * SuffExpandChildren --
   1514  *	Expand the names of any children of a given node that contain
   1515  *	variable invocations or file wildcards into actual targets.
   1516  *
   1517  * Input:
   1518  *	cln		Child to examine
   1519  *	pgn		Parent node being processed
   1520  *
   1521  * Results:
   1522  *	=== 0 (continue)
   1523  *
   1524  * Side Effects:
   1525  *	The expanded node is removed from the parent's list of children,
   1526  *	and the parent's unmade counter is decremented, but other nodes
   1527  * 	may be added.
   1528  *
   1529  *-----------------------------------------------------------------------
   1530  */
   1531 static void
   1532 SuffExpandChildren(LstNode cln, GNode *pgn)
   1533 {
   1534     GNode   	*cgn = (GNode *)Lst_Datum(cln);
   1535     GNode	*gn;	    /* New source 8) */
   1536     char	*cp;	    /* Expanded value */
   1537 
   1538     if (!Lst_IsEmpty(cgn->order_pred) || !Lst_IsEmpty(cgn->order_succ))
   1539 	/* It is all too hard to process the result of .ORDER */
   1540 	return;
   1541 
   1542     if (cgn->type & OP_WAIT)
   1543 	/* Ignore these (& OP_PHONY ?) */
   1544 	return;
   1545 
   1546     /*
   1547      * First do variable expansion -- this takes precedence over
   1548      * wildcard expansion. If the result contains wildcards, they'll be gotten
   1549      * to later since the resulting words are tacked on to the end of
   1550      * the children list.
   1551      */
   1552     if (strchr(cgn->name, '$') == NULL) {
   1553 	SuffExpandWildcards(cln, pgn);
   1554 	return;
   1555     }
   1556 
   1557     if (DEBUG(SUFF)) {
   1558 	fprintf(debug_file, "Expanding \"%s\"...", cgn->name);
   1559     }
   1560     cp = Var_Subst(NULL, cgn->name, pgn, VARF_UNDEFERR|VARF_WANTRES);
   1561 
   1562     if (cp != NULL) {
   1563 	Lst	    members = Lst_Init(FALSE);
   1564 
   1565 	if (cgn->type & OP_ARCHV) {
   1566 	    /*
   1567 	     * Node was an archive(member) target, so we want to call
   1568 	     * on the Arch module to find the nodes for us, expanding
   1569 	     * variables in the parent's context.
   1570 	     */
   1571 	    char	*sacrifice = cp;
   1572 
   1573 	    (void)Arch_ParseArchive(&sacrifice, members, pgn);
   1574 	} else {
   1575 	    /*
   1576 	     * Break the result into a vector of strings whose nodes
   1577 	     * we can find, then add those nodes to the members list.
   1578 	     * Unfortunately, we can't use brk_string b/c it
   1579 	     * doesn't understand about variable specifications with
   1580 	     * spaces in them...
   1581 	     */
   1582 	    char	    *start;
   1583 	    char	    *initcp = cp;   /* For freeing... */
   1584 
   1585 	    for (start = cp; *start == ' ' || *start == '\t'; start++)
   1586 		continue;
   1587 	    for (cp = start; *cp != '\0'; cp++) {
   1588 		if (*cp == ' ' || *cp == '\t') {
   1589 		    /*
   1590 		     * White-space -- terminate element, find the node,
   1591 		     * add it, skip any further spaces.
   1592 		     */
   1593 		    *cp++ = '\0';
   1594 		    gn = Targ_FindNode(start, TARG_CREATE);
   1595 		    (void)Lst_AtEnd(members, gn);
   1596 		    while (*cp == ' ' || *cp == '\t') {
   1597 			cp++;
   1598 		    }
   1599 		    /*
   1600 		     * Adjust cp for increment at start of loop, but
   1601 		     * set start to first non-space.
   1602 		     */
   1603 		    start = cp--;
   1604 		} else if (*cp == '$') {
   1605 		    /*
   1606 		     * Start of a variable spec -- contact variable module
   1607 		     * to find the end so we can skip over it.
   1608 		     */
   1609 		    char	*junk;
   1610 		    int 	len;
   1611 		    void	*freeIt;
   1612 
   1613 		    junk = Var_Parse(cp, pgn, VARF_UNDEFERR|VARF_WANTRES,
   1614 			&len, &freeIt);
   1615 		    if (junk != var_Error) {
   1616 			cp += len - 1;
   1617 		    }
   1618 
   1619 		    free(freeIt);
   1620 		} else if (*cp == '\\' && cp[1] != '\0') {
   1621 		    /*
   1622 		     * Escaped something -- skip over it
   1623 		     */
   1624 		    cp++;
   1625 		}
   1626 	    }
   1627 
   1628 	    if (cp != start) {
   1629 		/*
   1630 		 * Stuff left over -- add it to the list too
   1631 		 */
   1632 		gn = Targ_FindNode(start, TARG_CREATE);
   1633 		(void)Lst_AtEnd(members, gn);
   1634 	    }
   1635 	    /*
   1636 	     * Point cp back at the beginning again so the variable value
   1637 	     * can be freed.
   1638 	     */
   1639 	    cp = initcp;
   1640 	}
   1641 
   1642 	/*
   1643 	 * Add all elements of the members list to the parent node.
   1644 	 */
   1645 	while(!Lst_IsEmpty(members)) {
   1646 	    gn = (GNode *)Lst_DeQueue(members);
   1647 
   1648 	    if (DEBUG(SUFF)) {
   1649 		fprintf(debug_file, "%s...", gn->name);
   1650 	    }
   1651 	    /* Add gn to the parents child list before the original child */
   1652 	    (void)Lst_InsertBefore(pgn->children, cln, gn);
   1653 	    (void)Lst_AtEnd(gn->parents, pgn);
   1654 	    pgn->unmade++;
   1655 	    /* Expand wildcards on new node */
   1656 	    SuffExpandWildcards(Lst_Prev(cln), pgn);
   1657 	}
   1658 	Lst_Destroy(members, NULL);
   1659 
   1660 	/*
   1661 	 * Free the result
   1662 	 */
   1663 	free(cp);
   1664     }
   1665     if (DEBUG(SUFF)) {
   1666 	fprintf(debug_file, "\n");
   1667     }
   1668 
   1669     /*
   1670      * Now the source is expanded, remove it from the list of children to
   1671      * keep it from being processed.
   1672      */
   1673     pgn->unmade--;
   1674     Lst_Remove(pgn->children, cln);
   1675     Lst_Remove(cgn->parents, Lst_Member(cgn->parents, pgn));
   1676 }
   1677 
   1678 static void
   1679 SuffExpandWildcards(LstNode cln, GNode *pgn)
   1680 {
   1681     GNode   	*cgn = (GNode *)Lst_Datum(cln);
   1682     GNode	*gn;	    /* New source 8) */
   1683     char	*cp;	    /* Expanded value */
   1684     Lst 	explist;    /* List of expansions */
   1685 
   1686     if (!Dir_HasWildcards(cgn->name))
   1687 	return;
   1688 
   1689     /*
   1690      * Expand the word along the chosen path
   1691      */
   1692     explist = Lst_Init(FALSE);
   1693     Dir_Expand(cgn->name, Suff_FindPath(cgn), explist);
   1694 
   1695     while (!Lst_IsEmpty(explist)) {
   1696 	/*
   1697 	 * Fetch next expansion off the list and find its GNode
   1698 	 */
   1699 	cp = (char *)Lst_DeQueue(explist);
   1700 
   1701 	if (DEBUG(SUFF)) {
   1702 	    fprintf(debug_file, "%s...", cp);
   1703 	}
   1704 	gn = Targ_FindNode(cp, TARG_CREATE);
   1705 
   1706 	/* Add gn to the parents child list before the original child */
   1707 	(void)Lst_InsertBefore(pgn->children, cln, gn);
   1708 	(void)Lst_AtEnd(gn->parents, pgn);
   1709 	pgn->unmade++;
   1710     }
   1711 
   1712     /*
   1713      * Nuke what's left of the list
   1714      */
   1715     Lst_Destroy(explist, NULL);
   1716 
   1717     if (DEBUG(SUFF)) {
   1718 	fprintf(debug_file, "\n");
   1719     }
   1720 
   1721     /*
   1722      * Now the source is expanded, remove it from the list of children to
   1723      * keep it from being processed.
   1724      */
   1725     pgn->unmade--;
   1726     Lst_Remove(pgn->children, cln);
   1727     Lst_Remove(cgn->parents, Lst_Member(cgn->parents, pgn));
   1728 }
   1729 
   1730 /*-
   1731  *-----------------------------------------------------------------------
   1732  * Suff_FindPath --
   1733  *	Find a path along which to expand the node.
   1734  *
   1735  *	If the word has a known suffix, use that path.
   1736  *	If it has no known suffix, use the default system search path.
   1737  *
   1738  * Input:
   1739  *	gn		Node being examined
   1740  *
   1741  * Results:
   1742  *	The appropriate path to search for the GNode.
   1743  *
   1744  * Side Effects:
   1745  *	XXX: We could set the suffix here so that we don't have to scan
   1746  *	again.
   1747  *
   1748  *-----------------------------------------------------------------------
   1749  */
   1750 Lst
   1751 Suff_FindPath(GNode* gn)
   1752 {
   1753     Suff *suff = gn->suffix;
   1754 
   1755     if (suff == NULL) {
   1756 	SuffixCmpData sd;   /* Search string data */
   1757 	LstNode ln;
   1758 	sd.len = strlen(gn->name);
   1759 	sd.ename = gn->name + sd.len;
   1760 	ln = Lst_Find(sufflist, &sd, SuffSuffIsSuffixP);
   1761 
   1762 	if (DEBUG(SUFF)) {
   1763 	    fprintf(debug_file, "Wildcard expanding \"%s\"...", gn->name);
   1764 	}
   1765 	if (ln != NULL)
   1766 	    suff = (Suff *)Lst_Datum(ln);
   1767 	/* XXX: Here we can save the suffix so we don't have to do this again */
   1768     }
   1769 
   1770     if (suff != NULL) {
   1771 	if (DEBUG(SUFF)) {
   1772 	    fprintf(debug_file, "suffix is \"%s\"...", suff->name);
   1773 	}
   1774 	return suff->searchPath;
   1775     } else {
   1776 	/*
   1777 	 * Use default search path
   1778 	 */
   1779 	return dirSearchPath;
   1780     }
   1781 }
   1782 
   1783 /*-
   1784  *-----------------------------------------------------------------------
   1785  * SuffApplyTransform --
   1786  *	Apply a transformation rule, given the source and target nodes
   1787  *	and suffixes.
   1788  *
   1789  * Input:
   1790  *	tGn		Target node
   1791  *	sGn		Source node
   1792  *	t		Target suffix
   1793  *	s		Source suffix
   1794  *
   1795  * Results:
   1796  *	TRUE if successful, FALSE if not.
   1797  *
   1798  * Side Effects:
   1799  *	The source and target are linked and the commands from the
   1800  *	transformation are added to the target node's commands list.
   1801  *	All attributes but OP_DEPMASK and OP_TRANSFORM are applied
   1802  *	to the target. The target also inherits all the sources for
   1803  *	the transformation rule.
   1804  *
   1805  *-----------------------------------------------------------------------
   1806  */
   1807 static Boolean
   1808 SuffApplyTransform(GNode *tGn, GNode *sGn, Suff *t, Suff *s)
   1809 {
   1810     LstNode 	ln, nln;    /* General node */
   1811     char    	*tname;	    /* Name of transformation rule */
   1812     GNode   	*gn;	    /* Node for same */
   1813 
   1814     /*
   1815      * Form the proper links between the target and source.
   1816      */
   1817     (void)Lst_AtEnd(tGn->children, sGn);
   1818     (void)Lst_AtEnd(sGn->parents, tGn);
   1819     tGn->unmade += 1;
   1820 
   1821     /*
   1822      * Locate the transformation rule itself
   1823      */
   1824     tname = str_concat(s->name, t->name, 0);
   1825     ln = Lst_Find(transforms, tname, SuffGNHasNameP);
   1826     free(tname);
   1827 
   1828     if (ln == NULL) {
   1829 	/*
   1830 	 * Not really such a transformation rule (can happen when we're
   1831 	 * called to link an OP_MEMBER and OP_ARCHV node), so return
   1832 	 * FALSE.
   1833 	 */
   1834 	return(FALSE);
   1835     }
   1836 
   1837     gn = (GNode *)Lst_Datum(ln);
   1838 
   1839     if (DEBUG(SUFF)) {
   1840 	fprintf(debug_file, "\tapplying %s -> %s to \"%s\"\n", s->name, t->name, tGn->name);
   1841     }
   1842 
   1843     /*
   1844      * Record last child for expansion purposes
   1845      */
   1846     ln = Lst_Last(tGn->children);
   1847 
   1848     /*
   1849      * Pass the buck to Make_HandleUse to apply the rule
   1850      */
   1851     (void)Make_HandleUse(gn, tGn);
   1852 
   1853     /*
   1854      * Deal with wildcards and variables in any acquired sources
   1855      */
   1856     for (ln = Lst_Succ(ln); ln != NULL; ln = nln) {
   1857 	nln = Lst_Succ(ln);
   1858 	SuffExpandChildren(ln, tGn);
   1859     }
   1860 
   1861     /*
   1862      * Keep track of another parent to which this beast is transformed so
   1863      * the .IMPSRC variable can be set correctly for the parent.
   1864      */
   1865     (void)Lst_AtEnd(sGn->iParents, tGn);
   1866 
   1867     return(TRUE);
   1868 }
   1869 
   1870 
   1871 /*-
   1872  *-----------------------------------------------------------------------
   1873  * SuffFindArchiveDeps --
   1874  *	Locate dependencies for an OP_ARCHV node.
   1875  *
   1876  * Input:
   1877  *	gn		Node for which to locate dependencies
   1878  *
   1879  * Results:
   1880  *	None
   1881  *
   1882  * Side Effects:
   1883  *	Same as Suff_FindDeps
   1884  *
   1885  *-----------------------------------------------------------------------
   1886  */
   1887 static void
   1888 SuffFindArchiveDeps(GNode *gn, Lst slst)
   1889 {
   1890     char    	*eoarch;    /* End of archive portion */
   1891     char    	*eoname;    /* End of member portion */
   1892     GNode   	*mem;	    /* Node for member */
   1893     static const char	*copy[] = {
   1894 	/* Variables to be copied from the member node */
   1895 	TARGET,	    	    /* Must be first */
   1896 	PREFIX,	    	    /* Must be second */
   1897     };
   1898     LstNode 	ln, nln;    /* Next suffix node to check */
   1899     int	    	i;  	    /* Index into copy and vals */
   1900     Suff    	*ms;	    /* Suffix descriptor for member */
   1901     char    	*name;	    /* Start of member's name */
   1902 
   1903     /*
   1904      * The node is an archive(member) pair. so we must find a
   1905      * suffix for both of them.
   1906      */
   1907     eoarch = strchr(gn->name, '(');
   1908     eoname = strchr(eoarch, ')');
   1909 
   1910     *eoname = '\0';	  /* Nuke parentheses during suffix search */
   1911     *eoarch = '\0';	  /* So a suffix can be found */
   1912 
   1913     name = eoarch + 1;
   1914 
   1915     /*
   1916      * To simplify things, call Suff_FindDeps recursively on the member now,
   1917      * so we can simply compare the member's .PREFIX and .TARGET variables
   1918      * to locate its suffix. This allows us to figure out the suffix to
   1919      * use for the archive without having to do a quadratic search over the
   1920      * suffix list, backtracking for each one...
   1921      */
   1922     mem = Targ_FindNode(name, TARG_CREATE);
   1923     SuffFindDeps(mem, slst);
   1924 
   1925     /*
   1926      * Create the link between the two nodes right off
   1927      */
   1928     (void)Lst_AtEnd(gn->children, mem);
   1929     (void)Lst_AtEnd(mem->parents, gn);
   1930     gn->unmade += 1;
   1931 
   1932     /*
   1933      * Copy in the variables from the member node to this one.
   1934      */
   1935     for (i = (sizeof(copy)/sizeof(copy[0]))-1; i >= 0; i--) {
   1936 	char *p1;
   1937 	Var_Set(copy[i], Var_Value(copy[i], mem, &p1), gn, 0);
   1938 	free(p1);
   1939 
   1940     }
   1941 
   1942     ms = mem->suffix;
   1943     if (ms == NULL) {
   1944 	/*
   1945 	 * Didn't know what it was -- use .NULL suffix if not in make mode
   1946 	 */
   1947 	if (DEBUG(SUFF)) {
   1948 	    fprintf(debug_file, "using null suffix\n");
   1949 	}
   1950 	ms = suffNull;
   1951     }
   1952 
   1953 
   1954     /*
   1955      * Set the other two local variables required for this target.
   1956      */
   1957     Var_Set(MEMBER, name, gn, 0);
   1958     Var_Set(ARCHIVE, gn->name, gn, 0);
   1959 
   1960     /*
   1961      * Set $@ for compatibility with other makes
   1962      */
   1963     Var_Set(TARGET, gn->name, gn, 0);
   1964 
   1965     /*
   1966      * Now we've got the important local variables set, expand any sources
   1967      * that still contain variables or wildcards in their names.
   1968      */
   1969     for (ln = Lst_First(gn->children); ln != NULL; ln = nln) {
   1970 	nln = Lst_Succ(ln);
   1971 	SuffExpandChildren(ln, gn);
   1972     }
   1973 
   1974     if (ms != NULL) {
   1975 	/*
   1976 	 * Member has a known suffix, so look for a transformation rule from
   1977 	 * it to a possible suffix of the archive. Rather than searching
   1978 	 * through the entire list, we just look at suffixes to which the
   1979 	 * member's suffix may be transformed...
   1980 	 */
   1981 	SuffixCmpData	sd;		/* Search string data */
   1982 
   1983 	/*
   1984 	 * Use first matching suffix...
   1985 	 */
   1986 	sd.len = eoarch - gn->name;
   1987 	sd.ename = eoarch;
   1988 	ln = Lst_Find(ms->parents, &sd, SuffSuffIsSuffixP);
   1989 
   1990 	if (ln != NULL) {
   1991 	    /*
   1992 	     * Got one -- apply it
   1993 	     */
   1994 	    if (!SuffApplyTransform(gn, mem, (Suff *)Lst_Datum(ln), ms) &&
   1995 		DEBUG(SUFF))
   1996 	    {
   1997 		fprintf(debug_file, "\tNo transformation from %s -> %s\n",
   1998 		       ms->name, ((Suff *)Lst_Datum(ln))->name);
   1999 	    }
   2000 	}
   2001     }
   2002 
   2003     /*
   2004      * Replace the opening and closing parens now we've no need of the separate
   2005      * pieces.
   2006      */
   2007     *eoarch = '('; *eoname = ')';
   2008 
   2009     /*
   2010      * Pretend gn appeared to the left of a dependency operator so
   2011      * the user needn't provide a transformation from the member to the
   2012      * archive.
   2013      */
   2014     if (OP_NOP(gn->type)) {
   2015 	gn->type |= OP_DEPENDS;
   2016     }
   2017 
   2018     /*
   2019      * Flag the member as such so we remember to look in the archive for
   2020      * its modification time. The OP_JOIN | OP_MADE is needed because this
   2021      * target should never get made.
   2022      */
   2023     mem->type |= OP_MEMBER | OP_JOIN | OP_MADE;
   2024 }
   2025 
   2026 /*-
   2027  *-----------------------------------------------------------------------
   2028  * SuffFindNormalDeps --
   2029  *	Locate implicit dependencies for regular targets.
   2030  *
   2031  * Input:
   2032  *	gn		Node for which to find sources
   2033  *
   2034  * Results:
   2035  *	None.
   2036  *
   2037  * Side Effects:
   2038  *	Same as Suff_FindDeps...
   2039  *
   2040  *-----------------------------------------------------------------------
   2041  */
   2042 static void
   2043 SuffFindNormalDeps(GNode *gn, Lst slst)
   2044 {
   2045     char    	*eoname;    /* End of name */
   2046     char    	*sopref;    /* Start of prefix */
   2047     LstNode 	ln, nln;    /* Next suffix node to check */
   2048     Lst	    	srcs;	    /* List of sources at which to look */
   2049     Lst	    	targs;	    /* List of targets to which things can be
   2050 			     * transformed. They all have the same file,
   2051 			     * but different suff and pref fields */
   2052     Src	    	*bottom;    /* Start of found transformation path */
   2053     Src 	*src;	    /* General Src pointer */
   2054     char    	*pref;	    /* Prefix to use */
   2055     Src	    	*targ;	    /* General Src target pointer */
   2056     SuffixCmpData sd;	    /* Search string data */
   2057 
   2058 
   2059     sd.len = strlen(gn->name);
   2060     sd.ename = eoname = gn->name + sd.len;
   2061 
   2062     sopref = gn->name;
   2063 
   2064     /*
   2065      * Begin at the beginning...
   2066      */
   2067     ln = Lst_First(sufflist);
   2068     srcs = Lst_Init(FALSE);
   2069     targs = Lst_Init(FALSE);
   2070 
   2071     /*
   2072      * We're caught in a catch-22 here. On the one hand, we want to use any
   2073      * transformation implied by the target's sources, but we can't examine
   2074      * the sources until we've expanded any variables/wildcards they may hold,
   2075      * and we can't do that until we've set up the target's local variables
   2076      * and we can't do that until we know what the proper suffix for the
   2077      * target is (in case there are two suffixes one of which is a suffix of
   2078      * the other) and we can't know that until we've found its implied
   2079      * source, which we may not want to use if there's an existing source
   2080      * that implies a different transformation.
   2081      *
   2082      * In an attempt to get around this, which may not work all the time,
   2083      * but should work most of the time, we look for implied sources first,
   2084      * checking transformations to all possible suffixes of the target,
   2085      * use what we find to set the target's local variables, expand the
   2086      * children, then look for any overriding transformations they imply.
   2087      * Should we find one, we discard the one we found before.
   2088      */
   2089     bottom = NULL;
   2090     targ = NULL;
   2091 
   2092     if (!(gn->type & OP_PHONY)) {
   2093 
   2094 	while (ln != NULL) {
   2095 	    /*
   2096 	     * Look for next possible suffix...
   2097 	     */
   2098 	    ln = Lst_FindFrom(sufflist, ln, &sd, SuffSuffIsSuffixP);
   2099 
   2100 	    if (ln != NULL) {
   2101 		int	    prefLen;	    /* Length of the prefix */
   2102 
   2103 		/*
   2104 		 * Allocate a Src structure to which things can be transformed
   2105 		 */
   2106 		targ = bmake_malloc(sizeof(Src));
   2107 		targ->file = bmake_strdup(gn->name);
   2108 		targ->suff = (Suff *)Lst_Datum(ln);
   2109 		targ->suff->refCount++;
   2110 		targ->node = gn;
   2111 		targ->parent = NULL;
   2112 		targ->children = 0;
   2113 #ifdef DEBUG_SRC
   2114 		targ->cp = Lst_Init(FALSE);
   2115 #endif
   2116 
   2117 		/*
   2118 		 * Allocate room for the prefix, whose end is found by
   2119 		 * subtracting the length of the suffix from
   2120 		 * the end of the name.
   2121 		 */
   2122 		prefLen = (eoname - targ->suff->nameLen) - sopref;
   2123 		targ->pref = bmake_malloc(prefLen + 1);
   2124 		memcpy(targ->pref, sopref, prefLen);
   2125 		targ->pref[prefLen] = '\0';
   2126 
   2127 		/*
   2128 		 * Add nodes from which the target can be made
   2129 		 */
   2130 		SuffAddLevel(srcs, targ);
   2131 
   2132 		/*
   2133 		 * Record the target so we can nuke it
   2134 		 */
   2135 		(void)Lst_AtEnd(targs, targ);
   2136 
   2137 		/*
   2138 		 * Search from this suffix's successor...
   2139 		 */
   2140 		ln = Lst_Succ(ln);
   2141 	    }
   2142 	}
   2143 
   2144 	/*
   2145 	 * Handle target of unknown suffix...
   2146 	 */
   2147 	if (Lst_IsEmpty(targs) && suffNull != NULL) {
   2148 	    if (DEBUG(SUFF)) {
   2149 		fprintf(debug_file, "\tNo known suffix on %s. Using .NULL suffix\n", gn->name);
   2150 	    }
   2151 
   2152 	    targ = bmake_malloc(sizeof(Src));
   2153 	    targ->file = bmake_strdup(gn->name);
   2154 	    targ->suff = suffNull;
   2155 	    targ->suff->refCount++;
   2156 	    targ->node = gn;
   2157 	    targ->parent = NULL;
   2158 	    targ->children = 0;
   2159 	    targ->pref = bmake_strdup(sopref);
   2160 #ifdef DEBUG_SRC
   2161 	    targ->cp = Lst_Init(FALSE);
   2162 #endif
   2163 
   2164 	    /*
   2165 	     * Only use the default suffix rules if we don't have commands
   2166 	     * defined for this gnode; traditional make programs used to
   2167 	     * not define suffix rules if the gnode had children but we
   2168 	     * don't do this anymore.
   2169 	     */
   2170 	    if (Lst_IsEmpty(gn->commands))
   2171 		SuffAddLevel(srcs, targ);
   2172 	    else {
   2173 		if (DEBUG(SUFF))
   2174 		    fprintf(debug_file, "not ");
   2175 	    }
   2176 
   2177 	    if (DEBUG(SUFF))
   2178 		fprintf(debug_file, "adding suffix rules\n");
   2179 
   2180 	    (void)Lst_AtEnd(targs, targ);
   2181 	}
   2182 
   2183 	/*
   2184 	 * Using the list of possible sources built up from the target
   2185 	 * suffix(es), try and find an existing file/target that matches.
   2186 	 */
   2187 	bottom = SuffFindThem(srcs, slst);
   2188 
   2189 	if (bottom == NULL) {
   2190 	    /*
   2191 	     * No known transformations -- use the first suffix found
   2192 	     * for setting the local variables.
   2193 	     */
   2194 	    if (!Lst_IsEmpty(targs)) {
   2195 		targ = (Src *)Lst_Datum(Lst_First(targs));
   2196 	    } else {
   2197 		targ = NULL;
   2198 	    }
   2199 	} else {
   2200 	    /*
   2201 	     * Work up the transformation path to find the suffix of the
   2202 	     * target to which the transformation was made.
   2203 	     */
   2204 	    for (targ = bottom; targ->parent != NULL; targ = targ->parent)
   2205 		continue;
   2206 	}
   2207     }
   2208 
   2209     Var_Set(TARGET, gn->path ? gn->path : gn->name, gn, 0);
   2210 
   2211     pref = (targ != NULL) ? targ->pref : gn->name;
   2212     Var_Set(PREFIX, pref, gn, 0);
   2213 
   2214     /*
   2215      * Now we've got the important local variables set, expand any sources
   2216      * that still contain variables or wildcards in their names.
   2217      */
   2218     for (ln = Lst_First(gn->children); ln != NULL; ln = nln) {
   2219 	nln = Lst_Succ(ln);
   2220 	SuffExpandChildren(ln, gn);
   2221     }
   2222 
   2223     if (targ == NULL) {
   2224 	if (DEBUG(SUFF)) {
   2225 	    fprintf(debug_file, "\tNo valid suffix on %s\n", gn->name);
   2226 	}
   2227 
   2228 sfnd_abort:
   2229 	/*
   2230 	 * Deal with finding the thing on the default search path. We
   2231 	 * always do that, not only if the node is only a source (not
   2232 	 * on the lhs of a dependency operator or [XXX] it has neither
   2233 	 * children or commands) as the old pmake did.
   2234 	 */
   2235 	if ((gn->type & (OP_PHONY|OP_NOPATH)) == 0) {
   2236 	    free(gn->path);
   2237 	    gn->path = Dir_FindFile(gn->name,
   2238 				    (targ == NULL ? dirSearchPath :
   2239 				     targ->suff->searchPath));
   2240 	    if (gn->path != NULL) {
   2241 		char *ptr;
   2242 		Var_Set(TARGET, gn->path, gn, 0);
   2243 
   2244 		if (targ != NULL) {
   2245 		    /*
   2246 		     * Suffix known for the thing -- trim the suffix off
   2247 		     * the path to form the proper .PREFIX variable.
   2248 		     */
   2249 		    int     savep = strlen(gn->path) - targ->suff->nameLen;
   2250 		    char    savec;
   2251 
   2252 		    if (gn->suffix)
   2253 			gn->suffix->refCount--;
   2254 		    gn->suffix = targ->suff;
   2255 		    gn->suffix->refCount++;
   2256 
   2257 		    savec = gn->path[savep];
   2258 		    gn->path[savep] = '\0';
   2259 
   2260 		    if ((ptr = strrchr(gn->path, '/')) != NULL)
   2261 			ptr++;
   2262 		    else
   2263 			ptr = gn->path;
   2264 
   2265 		    Var_Set(PREFIX, ptr, gn, 0);
   2266 
   2267 		    gn->path[savep] = savec;
   2268 		} else {
   2269 		    /*
   2270 		     * The .PREFIX gets the full path if the target has
   2271 		     * no known suffix.
   2272 		     */
   2273 		    if (gn->suffix)
   2274 			gn->suffix->refCount--;
   2275 		    gn->suffix = NULL;
   2276 
   2277 		    if ((ptr = strrchr(gn->path, '/')) != NULL)
   2278 			ptr++;
   2279 		    else
   2280 			ptr = gn->path;
   2281 
   2282 		    Var_Set(PREFIX, ptr, gn, 0);
   2283 		}
   2284 	    }
   2285 	}
   2286 
   2287 	goto sfnd_return;
   2288     }
   2289 
   2290     /*
   2291      * If the suffix indicates that the target is a library, mark that in
   2292      * the node's type field.
   2293      */
   2294     if (targ->suff->flags & SUFF_LIBRARY) {
   2295 	gn->type |= OP_LIB;
   2296     }
   2297 
   2298     /*
   2299      * Check for overriding transformation rule implied by sources
   2300      */
   2301     if (!Lst_IsEmpty(gn->children)) {
   2302 	src = SuffFindCmds(targ, slst);
   2303 
   2304 	if (src != NULL) {
   2305 	    /*
   2306 	     * Free up all the Src structures in the transformation path
   2307 	     * up to, but not including, the parent node.
   2308 	     */
   2309 	    while (bottom && bottom->parent != NULL) {
   2310 		if (Lst_Member(slst, bottom) == NULL) {
   2311 		    Lst_AtEnd(slst, bottom);
   2312 		}
   2313 		bottom = bottom->parent;
   2314 	    }
   2315 	    bottom = src;
   2316 	}
   2317     }
   2318 
   2319     if (bottom == NULL) {
   2320 	/*
   2321 	 * No idea from where it can come -- return now.
   2322 	 */
   2323 	goto sfnd_abort;
   2324     }
   2325 
   2326     /*
   2327      * We now have a list of Src structures headed by 'bottom' and linked via
   2328      * their 'parent' pointers. What we do next is create links between
   2329      * source and target nodes (which may or may not have been created)
   2330      * and set the necessary local variables in each target. The
   2331      * commands for each target are set from the commands of the
   2332      * transformation rule used to get from the src suffix to the targ
   2333      * suffix. Note that this causes the commands list of the original
   2334      * node, gn, to be replaced by the commands of the final
   2335      * transformation rule. Also, the unmade field of gn is incremented.
   2336      * Etc.
   2337      */
   2338     if (bottom->node == NULL) {
   2339 	bottom->node = Targ_FindNode(bottom->file, TARG_CREATE);
   2340     }
   2341 
   2342     for (src = bottom; src->parent != NULL; src = src->parent) {
   2343 	targ = src->parent;
   2344 
   2345 	if (src->node->suffix)
   2346 	    src->node->suffix->refCount--;
   2347 	src->node->suffix = src->suff;
   2348 	src->node->suffix->refCount++;
   2349 
   2350 	if (targ->node == NULL) {
   2351 	    targ->node = Targ_FindNode(targ->file, TARG_CREATE);
   2352 	}
   2353 
   2354 	SuffApplyTransform(targ->node, src->node,
   2355 			   targ->suff, src->suff);
   2356 
   2357 	if (targ->node != gn) {
   2358 	    /*
   2359 	     * Finish off the dependency-search process for any nodes
   2360 	     * between bottom and gn (no point in questing around the
   2361 	     * filesystem for their implicit source when it's already
   2362 	     * known). Note that the node can't have any sources that
   2363 	     * need expanding, since SuffFindThem will stop on an existing
   2364 	     * node, so all we need to do is set the standard and System V
   2365 	     * variables.
   2366 	     */
   2367 	    targ->node->type |= OP_DEPS_FOUND;
   2368 
   2369 	    Var_Set(PREFIX, targ->pref, targ->node, 0);
   2370 
   2371 	    Var_Set(TARGET, targ->node->name, targ->node, 0);
   2372 	}
   2373     }
   2374 
   2375     if (gn->suffix)
   2376 	gn->suffix->refCount--;
   2377     gn->suffix = src->suff;
   2378     gn->suffix->refCount++;
   2379 
   2380     /*
   2381      * Nuke the transformation path and the Src structures left over in the
   2382      * two lists.
   2383      */
   2384 sfnd_return:
   2385     if (bottom)
   2386 	if (Lst_Member(slst, bottom) == NULL)
   2387 	    Lst_AtEnd(slst, bottom);
   2388 
   2389     while (SuffRemoveSrc(srcs) || SuffRemoveSrc(targs))
   2390 	continue;
   2391 
   2392     Lst_Concat(slst, srcs, LST_CONCLINK);
   2393     Lst_Concat(slst, targs, LST_CONCLINK);
   2394 }
   2395 
   2396 
   2397 /*-
   2398  *-----------------------------------------------------------------------
   2399  * Suff_FindDeps  --
   2400  *	Find implicit sources for the target described by the graph node
   2401  *	gn
   2402  *
   2403  * Results:
   2404  *	Nothing.
   2405  *
   2406  * Side Effects:
   2407  *	Nodes are added to the graph below the passed-in node. The nodes
   2408  *	are marked to have their IMPSRC variable filled in. The
   2409  *	PREFIX variable is set for the given node and all its
   2410  *	implied children.
   2411  *
   2412  * Notes:
   2413  *	The path found by this target is the shortest path in the
   2414  *	transformation graph, which may pass through non-existent targets,
   2415  *	to an existing target. The search continues on all paths from the
   2416  *	root suffix until a file is found. I.e. if there's a path
   2417  *	.o -> .c -> .l -> .l,v from the root and the .l,v file exists but
   2418  *	the .c and .l files don't, the search will branch out in
   2419  *	all directions from .o and again from all the nodes on the
   2420  *	next level until the .l,v node is encountered.
   2421  *
   2422  *-----------------------------------------------------------------------
   2423  */
   2424 
   2425 void
   2426 Suff_FindDeps(GNode *gn)
   2427 {
   2428 
   2429     SuffFindDeps(gn, srclist);
   2430     while (SuffRemoveSrc(srclist))
   2431 	continue;
   2432 }
   2433 
   2434 
   2435 /*
   2436  * Input:
   2437  *	gn		node we're dealing with
   2438  *
   2439  */
   2440 static void
   2441 SuffFindDeps(GNode *gn, Lst slst)
   2442 {
   2443     if (gn->type & OP_DEPS_FOUND) {
   2444 	/*
   2445 	 * If dependencies already found, no need to do it again...
   2446 	 */
   2447 	return;
   2448     } else {
   2449 	gn->type |= OP_DEPS_FOUND;
   2450     }
   2451     /*
   2452      * Make sure we have these set, may get revised below.
   2453      */
   2454     Var_Set(TARGET, gn->path ? gn->path : gn->name, gn, 0);
   2455     Var_Set(PREFIX, gn->name, gn, 0);
   2456 
   2457     if (DEBUG(SUFF)) {
   2458 	fprintf(debug_file, "SuffFindDeps (%s)\n", gn->name);
   2459     }
   2460 
   2461     if (gn->type & OP_ARCHV) {
   2462 	SuffFindArchiveDeps(gn, slst);
   2463     } else if (gn->type & OP_LIB) {
   2464 	/*
   2465 	 * If the node is a library, it is the arch module's job to find it
   2466 	 * and set the TARGET variable accordingly. We merely provide the
   2467 	 * search path, assuming all libraries end in ".a" (if the suffix
   2468 	 * hasn't been defined, there's nothing we can do for it, so we just
   2469 	 * set the TARGET variable to the node's name in order to give it a
   2470 	 * value).
   2471 	 */
   2472 	LstNode	ln;
   2473 	Suff	*s;
   2474 
   2475 	ln = Lst_Find(sufflist, LIBSUFF, SuffSuffHasNameP);
   2476 	if (gn->suffix)
   2477 	    gn->suffix->refCount--;
   2478 	if (ln != NULL) {
   2479 	    gn->suffix = s = (Suff *)Lst_Datum(ln);
   2480 	    gn->suffix->refCount++;
   2481 	    Arch_FindLib(gn, s->searchPath);
   2482 	} else {
   2483 	    gn->suffix = NULL;
   2484 	    Var_Set(TARGET, gn->name, gn, 0);
   2485 	}
   2486 	/*
   2487 	 * Because a library (-lfoo) target doesn't follow the standard
   2488 	 * filesystem conventions, we don't set the regular variables for
   2489 	 * the thing. .PREFIX is simply made empty...
   2490 	 */
   2491 	Var_Set(PREFIX, "", gn, 0);
   2492     } else {
   2493 	SuffFindNormalDeps(gn, slst);
   2494     }
   2495 }
   2496 
   2497 /*-
   2498  *-----------------------------------------------------------------------
   2499  * Suff_SetNull --
   2500  *	Define which suffix is the null suffix.
   2501  *
   2502  * Input:
   2503  *	name		Name of null suffix
   2504  *
   2505  * Results:
   2506  *	None.
   2507  *
   2508  * Side Effects:
   2509  *	'suffNull' is altered.
   2510  *
   2511  * Notes:
   2512  *	Need to handle the changing of the null suffix gracefully so the
   2513  *	old transformation rules don't just go away.
   2514  *
   2515  *-----------------------------------------------------------------------
   2516  */
   2517 void
   2518 Suff_SetNull(char *name)
   2519 {
   2520     Suff    *s;
   2521     LstNode ln;
   2522 
   2523     ln = Lst_Find(sufflist, name, SuffSuffHasNameP);
   2524     if (ln != NULL) {
   2525 	s = (Suff *)Lst_Datum(ln);
   2526 	if (suffNull != NULL) {
   2527 	    suffNull->flags &= ~SUFF_NULL;
   2528 	}
   2529 	s->flags |= SUFF_NULL;
   2530 	/*
   2531 	 * XXX: Here's where the transformation mangling would take place
   2532 	 */
   2533 	suffNull = s;
   2534     } else {
   2535 	Parse_Error(PARSE_WARNING, "Desired null suffix %s not defined.",
   2536 		     name);
   2537     }
   2538 }
   2539 
   2540 /*-
   2541  *-----------------------------------------------------------------------
   2542  * Suff_Init --
   2543  *	Initialize suffixes module
   2544  *
   2545  * Results:
   2546  *	None
   2547  *
   2548  * Side Effects:
   2549  *	Many
   2550  *-----------------------------------------------------------------------
   2551  */
   2552 void
   2553 Suff_Init(void)
   2554 {
   2555 #ifdef CLEANUP
   2556     suffClean = Lst_Init(FALSE);
   2557 #endif
   2558     srclist = Lst_Init(FALSE);
   2559     transforms = Lst_Init(FALSE);
   2560 
   2561     /*
   2562      * Create null suffix for single-suffix rules (POSIX). The thing doesn't
   2563      * actually go on the suffix list or everyone will think that's its
   2564      * suffix.
   2565      */
   2566     Suff_ClearSuffixes();
   2567 }
   2568 
   2569 
   2570 /*-
   2571  *----------------------------------------------------------------------
   2572  * Suff_End --
   2573  *	Cleanup the this module
   2574  *
   2575  * Results:
   2576  *	None
   2577  *
   2578  * Side Effects:
   2579  *	The memory is free'd.
   2580  *----------------------------------------------------------------------
   2581  */
   2582 
   2583 void
   2584 Suff_End(void)
   2585 {
   2586 #ifdef CLEANUP
   2587     Lst_Destroy(sufflist, SuffFree);
   2588     Lst_Destroy(suffClean, SuffFree);
   2589     if (suffNull)
   2590 	SuffFree(suffNull);
   2591     Lst_Destroy(srclist, NULL);
   2592     Lst_Destroy(transforms, NULL);
   2593 #endif
   2594 }
   2595 
   2596 
   2597 /********************* DEBUGGING FUNCTIONS **********************/
   2598 
   2599 static int SuffPrintName(void *s, void *dummy MAKE_ATTR_UNUSED)
   2600 {
   2601 
   2602     fprintf(debug_file, "%s ", ((Suff *)s)->name);
   2603     return 0;
   2604 }
   2605 
   2606 static int
   2607 SuffPrintSuff(void *sp, void *dummy MAKE_ATTR_UNUSED)
   2608 {
   2609     Suff    *s = (Suff *)sp;
   2610     int	    flags;
   2611     int	    flag;
   2612 
   2613     fprintf(debug_file, "# `%s' [%d] ", s->name, s->refCount);
   2614 
   2615     flags = s->flags;
   2616     if (flags) {
   2617 	fputs(" (", debug_file);
   2618 	while (flags) {
   2619 	    flag = 1 << (ffs(flags) - 1);
   2620 	    flags &= ~flag;
   2621 	    switch (flag) {
   2622 		case SUFF_NULL:
   2623 		    fprintf(debug_file, "NULL");
   2624 		    break;
   2625 		case SUFF_INCLUDE:
   2626 		    fprintf(debug_file, "INCLUDE");
   2627 		    break;
   2628 		case SUFF_LIBRARY:
   2629 		    fprintf(debug_file, "LIBRARY");
   2630 		    break;
   2631 	    }
   2632 	    fputc(flags ? '|' : ')', debug_file);
   2633 	}
   2634     }
   2635     fputc('\n', debug_file);
   2636     fprintf(debug_file, "#\tTo: ");
   2637     Lst_ForEach(s->parents, SuffPrintName, NULL);
   2638     fputc('\n', debug_file);
   2639     fprintf(debug_file, "#\tFrom: ");
   2640     Lst_ForEach(s->children, SuffPrintName, NULL);
   2641     fputc('\n', debug_file);
   2642     fprintf(debug_file, "#\tSearch Path: ");
   2643     Dir_PrintPath(s->searchPath);
   2644     fputc('\n', debug_file);
   2645     return 0;
   2646 }
   2647 
   2648 static int
   2649 SuffPrintTrans(void *tp, void *dummy MAKE_ATTR_UNUSED)
   2650 {
   2651     GNode   *t = (GNode *)tp;
   2652 
   2653     fprintf(debug_file, "%-16s: ", t->name);
   2654     Targ_PrintType(t->type);
   2655     fputc('\n', debug_file);
   2656     Lst_ForEach(t->commands, Targ_PrintCmd, NULL);
   2657     fputc('\n', debug_file);
   2658     return 0;
   2659 }
   2660 
   2661 void
   2662 Suff_PrintAll(void)
   2663 {
   2664     fprintf(debug_file, "#*** Suffixes:\n");
   2665     Lst_ForEach(sufflist, SuffPrintSuff, NULL);
   2666 
   2667     fprintf(debug_file, "#*** Transformations:\n");
   2668     Lst_ForEach(transforms, SuffPrintTrans, NULL);
   2669 }
   2670