BSD 4_3_Net_2 release
[unix-history] / usr / src / usr.bin / make / targ.c
index efbedaf..824a3d6 100644 (file)
@@ -7,21 +7,37 @@
  * This code is derived from software contributed to Berkeley by
  * Adam de Boor.
  *
  * This code is derived from software contributed to Berkeley by
  * Adam de Boor.
  *
- * Redistribution and use in source and binary forms are permitted
- * provided that the above copyright notice and this paragraph are
- * duplicated in all such forms and that any documentation,
- * advertising materials, and other materials related to such
- * distribution and use acknowledge that the software was developed
- * by the University of California, Berkeley.  The name of the
- * University may not be used to endorse or promote products derived
- * from this software without specific prior written permission.
- * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR
- * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
- * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
+ * Redistribution and use in source and binary forms, with or without
+ * modification, are permitted provided that the following conditions
+ * are met:
+ * 1. Redistributions of source code must retain the above copyright
+ *    notice, this list of conditions and the following disclaimer.
+ * 2. Redistributions in binary form must reproduce the above copyright
+ *    notice, this list of conditions and the following disclaimer in the
+ *    documentation and/or other materials provided with the distribution.
+ * 3. All advertising materials mentioning features or use of this software
+ *    must display the following acknowledgement:
+ *     This product includes software developed by the University of
+ *     California, Berkeley and its contributors.
+ * 4. Neither the name of the University nor the names of its contributors
+ *    may be used to endorse or promote products derived from this software
+ *    without specific prior written permission.
+ *
+ * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
+ * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
+ * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
+ * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
+ * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
+ * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
+ * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
+ * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
+ * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
+ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
+ * SUCH DAMAGE.
  */
 
 #ifndef lint
  */
 
 #ifndef lint
-static char sccsid[] = "@(#)targ.c     5.2 (Berkeley) %G%";
+static char sccsid[] = "@(#)targ.c     5.9 (Berkeley) 3/1/91";
 #endif /* not lint */
 
 /*-
 #endif /* not lint */
 
 /*-
@@ -89,9 +105,9 @@ void
 Targ_Init ()
 {
     allTargets = Lst_Init (FALSE);
 Targ_Init ()
 {
     allTargets = Lst_Init (FALSE);
-    Hash_InitTable (&targets, HTSIZE, HASH_STRING_KEYS);
+    Hash_InitTable (&targets, HTSIZE);
 }
 }
-\f
+
 /*-
  *-----------------------------------------------------------------------
  * Targ_NewGN  --
 /*-
  *-----------------------------------------------------------------------
  * Targ_NewGN  --
@@ -111,8 +127,8 @@ Targ_NewGN (name)
 {
     register GNode *gn;
 
 {
     register GNode *gn;
 
-    gn = (GNode *) malloc (sizeof (GNode));
-    gn->name = Str_New (name);
+    gn = (GNode *) emalloc (sizeof (GNode));
+    gn->name = strdup (name);
     gn->path = (char *) 0;
     if (name[0] == '-' && name[1] == 'l') {
        gn->type = OP_LIB;
     gn->path = (char *) 0;
     if (name[0] == '-' && name[1] == 'l') {
        gn->type = OP_LIB;
@@ -135,7 +151,7 @@ Targ_NewGN (name)
 
     return (gn);
 }
 
     return (gn);
 }
-\f
+
 /*-
  *-----------------------------------------------------------------------
  * Targ_FindNode  --
 /*-
  *-----------------------------------------------------------------------
  * Targ_FindNode  --
@@ -179,7 +195,7 @@ Targ_FindNode (name, flags)
        return ((GNode *) Hash_GetValue (he));
     }
 }
        return ((GNode *) Hash_GetValue (he));
     }
 }
-\f
+
 /*-
  *-----------------------------------------------------------------------
  * Targ_FindList --
 /*-
  *-----------------------------------------------------------------------
  * Targ_FindList --
@@ -231,7 +247,7 @@ Targ_FindList (names, flags)
     Lst_Close (names);
     return (nodes);
 }
     Lst_Close (names);
     return (nodes);
 }
-\f
+
 /*-
  *-----------------------------------------------------------------------
  * Targ_Ignore  --
 /*-
  *-----------------------------------------------------------------------
  * Targ_Ignore  --
@@ -254,7 +270,7 @@ Targ_Ignore (gn)
        return (FALSE);
     }
 }
        return (FALSE);
     }
 }
-\f
+
 /*-
  *-----------------------------------------------------------------------
  * Targ_Silent  --
 /*-
  *-----------------------------------------------------------------------
  * Targ_Silent  --
@@ -277,7 +293,7 @@ Targ_Silent (gn)
        return (FALSE);
     }
 }
        return (FALSE);
     }
 }
-\f
+
 /*-
  *-----------------------------------------------------------------------
  * Targ_Precious --
 /*-
  *-----------------------------------------------------------------------
  * Targ_Precious --
@@ -300,7 +316,7 @@ Targ_Precious (gn)
        return (FALSE);
     }
 }
        return (FALSE);
     }
 }
-\f
+
 /******************* DEBUG INFO PRINTING ****************/
 
 static GNode     *mainTarg;    /* the main target, as set by Targ_SetMain */
 /******************* DEBUG INFO PRINTING ****************/
 
 static GNode     *mainTarg;    /* the main target, as set by Targ_SetMain */
@@ -368,7 +384,7 @@ Targ_PrintCmd (cmd)
  */
 char *
 Targ_FmtTime (time)
  */
 char *
 Targ_FmtTime (time)
-    int    time;
+    time_t    time;
 {
     struct tm          *parts;
     static char                buf[40];
 {
     struct tm          *parts;
     static char                buf[40];
@@ -418,7 +434,7 @@ Targ_PrintType (type)
        type &= ~tbit;
 
        switch(tbit) {
        type &= ~tbit;
 
        switch(tbit) {
-           PRINTBIT(DONTCARE);
+           PRINTBIT(OPTIONAL);
            PRINTBIT(USE);
            PRINTBIT(EXEC);
            PRINTBIT(IGNORE);
            PRINTBIT(USE);
            PRINTBIT(EXEC);
            PRINTBIT(IGNORE);
@@ -426,13 +442,9 @@ Targ_PrintType (type)
            PRINTBIT(SILENT);
            PRINTBIT(MAKE);
            PRINTBIT(JOIN);
            PRINTBIT(SILENT);
            PRINTBIT(MAKE);
            PRINTBIT(JOIN);
-           PRINTBIT(EXPORT);
-           PRINTBIT(NOEXPORT);
-           PRINTBIT(EXPORTSAME);
            PRINTBIT(INVISIBLE);
            PRINTBIT(NOTMAIN);
            PRINTDBIT(LIB);
            PRINTBIT(INVISIBLE);
            PRINTBIT(NOTMAIN);
            PRINTDBIT(LIB);
-           PRINTBIT(M68020);
            /*XXX: MEMBER is defined, so CONCAT(OP_,MEMBER) gives OP_"%" */
            case OP_MEMBER: if (DEBUG(TARG)) printf(".MEMBER "); break;
            PRINTDBIT(ARCHV);
            /*XXX: MEMBER is defined, so CONCAT(OP_,MEMBER) gives OP_"%" */
            case OP_MEMBER: if (DEBUG(TARG)) printf(".MEMBER "); break;
            PRINTDBIT(ARCHV);
@@ -512,7 +524,7 @@ TargPrintNode (gn, pass)
     }
     return (0);
 }
     }
     return (0);
 }
-\f
+
 /*-
  *-----------------------------------------------------------------------
  * TargPrintOnlySrc --
 /*-
  *-----------------------------------------------------------------------
  * TargPrintOnlySrc --
@@ -536,7 +548,7 @@ TargPrintOnlySrc(gn)
     }
     return (0);
 }
     }
     return (0);
 }
-\f
+
 /*-
  *-----------------------------------------------------------------------
  * Targ_PrintGraph --
 /*-
  *-----------------------------------------------------------------------
  * Targ_PrintGraph --