Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/usr.bin/make make(1): clean up the documentation for Parse_File



details:   https://anonhg.NetBSD.org/src/rev/aa187debf41f
branches:  trunk
changeset: 938678:aa187debf41f
user:      rillig <rillig%NetBSD.org@localhost>
date:      Sun Sep 13 09:25:52 2020 +0000

description:
make(1): clean up the documentation for Parse_File

diffstat:

 usr.bin/make/parse.c |  27 +++++++--------------------
 1 files changed, 7 insertions(+), 20 deletions(-)

diffs (56 lines):

diff -r f076df7cd449 -r aa187debf41f usr.bin/make/parse.c
--- a/usr.bin/make/parse.c      Sun Sep 13 09:23:48 2020 +0000
+++ b/usr.bin/make/parse.c      Sun Sep 13 09:25:52 2020 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: parse.c,v 1.296 2020/09/13 06:05:56 rillig Exp $       */
+/*     $NetBSD: parse.c,v 1.297 2020/09/13 09:25:52 rillig Exp $       */
 
 /*
  * Copyright (c) 1988, 1989, 1990, 1993
@@ -69,14 +69,14 @@
  */
 
 #ifndef MAKE_NATIVE
-static char rcsid[] = "$NetBSD: parse.c,v 1.296 2020/09/13 06:05:56 rillig Exp $";
+static char rcsid[] = "$NetBSD: parse.c,v 1.297 2020/09/13 09:25:52 rillig Exp $";
 #else
 #include <sys/cdefs.h>
 #ifndef lint
 #if 0
 static char sccsid[] = "@(#)parse.c    8.3 (Berkeley) 3/19/94";
 #else
-__RCSID("$NetBSD: parse.c,v 1.296 2020/09/13 06:05:56 rillig Exp $");
+__RCSID("$NetBSD: parse.c,v 1.297 2020/09/13 09:25:52 rillig Exp $");
 #endif
 #endif /* not lint */
 #endif
@@ -2873,25 +2873,12 @@
 }
 
 
-/*-
- *---------------------------------------------------------------------
- * Parse_File --
- *     Parse a file into its component parts, incorporating it into the
- *     current dependency graph. This is the main function and controls
- *     almost every other function in this module
+/* Parse a top-level makefile into its component parts, incorporating them
+ * into the global dependency graph.
  *
  * Input:
- *     name            the name of the file being read
- *     fd              Open file to makefile to parse
- *
- * Results:
- *     None
- *
- * Side Effects:
- *     closes fd.
- *     Loads. Nodes are added to the list of all targets, nodes and links
- *     are added to the dependency graph. etc. etc. etc.
- *---------------------------------------------------------------------
+ *     name            The name of the file being read
+ *     fd              The open file to parse; will be closed at the end
  */
 void
 Parse_File(const char *name, int fd)



Home | Main Index | Thread Index | Old Index