summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ar.c4
-rw-r--r--commands.h3
-rw-r--r--dep.h3
-rw-r--r--file.c4
-rw-r--r--file.h4
-rw-r--r--job.h3
-rw-r--r--main.c3
-rw-r--r--misc.c3
-rw-r--r--read.c4
-rw-r--r--remake.c4
-rw-r--r--remote-cstms.c3
-rw-r--r--remote-stub.c3
-rw-r--r--rule.h3
-rw-r--r--variable.h3
-rw-r--r--vpath.c3
15 files changed, 29 insertions, 21 deletions
diff --git a/ar.c b/ar.c
index c1fda066..63fcd34f 100644
--- a/ar.c
+++ b/ar.c
@@ -1,5 +1,5 @@
-/* Copyright (C) 1988, 1989, 1990, 1991, 1992, 1993
- Free Software Foundation, Inc.
+/* Interface to `ar' archives for GNU Make.
+Copyright (C) 1988, 1989, 1990, 1991, 1992, 1993 Free Software Foundation, Inc.
This file is part of GNU Make.
GNU Make is free software; you can redistribute it and/or modify
diff --git a/commands.h b/commands.h
index d99bec8f..31de16ae 100644
--- a/commands.h
+++ b/commands.h
@@ -1,4 +1,5 @@
-/* Copyright (C) 1988, 1989, 1991, 1993 Free Software Foundation, Inc.
+/* Definition of data structures describing shell commands for GNU Make.
+Copyright (C) 1988, 1989, 1991, 1993 Free Software Foundation, Inc.
This file is part of GNU Make.
GNU Make is free software; you can redistribute it and/or modify
diff --git a/dep.h b/dep.h
index f579b33a..244cde24 100644
--- a/dep.h
+++ b/dep.h
@@ -1,4 +1,5 @@
-/* Copyright (C) 1988, 1989, 1991, 1992, 1993 Free Software Foundation, Inc.
+/* Definitions of dependency data structures for GNU Make.
+Copyright (C) 1988, 1989, 1991, 1992, 1993 Free Software Foundation, Inc.
This file is part of GNU Make.
GNU Make is free software; you can redistribute it and/or modify
diff --git a/file.c b/file.c
index 96fdb29f..21335d43 100644
--- a/file.c
+++ b/file.c
@@ -1,5 +1,5 @@
-/* Copyright (C) 1988, 1989, 1990, 1991, 1992, 1993
- Free Software Foundation, Inc.
+/* Target file hash table management for GNU Make.
+Copyright (C) 1988, 1989, 1990, 1991, 1992, 1993 Free Software Foundation, Inc.
This file is part of GNU Make.
GNU Make is free software; you can redistribute it and/or modify
diff --git a/file.h b/file.h
index fc24731f..b772283c 100644
--- a/file.h
+++ b/file.h
@@ -1,5 +1,5 @@
-/* Copyright (C) 1988, 1989, 1990, 1991, 1992, 1993
- Free Software Foundation, Inc.
+/* Definition of target file data structures for GNU Make.
+Copyright (C) 1988, 1989, 1990, 1991, 1992, 1993 Free Software Foundation, Inc.
This file is part of GNU Make.
GNU Make is free software; you can redistribute it and/or modify
diff --git a/job.h b/job.h
index 1d966d08..572bb33a 100644
--- a/job.h
+++ b/job.h
@@ -1,4 +1,5 @@
-/* Copyright (C) 1992, 1993 Free Software Foundation, Inc.
+/* Definitions for managing subprocesses in GNU Make.
+Copyright (C) 1992, 1993 Free Software Foundation, Inc.
This file is part of GNU Make.
GNU Make is free software; you can redistribute it and/or modify
diff --git a/main.c b/main.c
index ccc57dae..5118d972 100644
--- a/main.c
+++ b/main.c
@@ -1,4 +1,5 @@
-/* Copyright (C) 1988, 89, 90, 91, 94 Free Software Foundation, Inc.
+/* Argument parsing and main program of GNU Make.
+Copyright (C) 1988, 89, 90, 91, 94 Free Software Foundation, Inc.
This file is part of GNU Make.
GNU Make is free software; you can redistribute it and/or modify
diff --git a/misc.c b/misc.c
index c5372ed1..be60d91b 100644
--- a/misc.c
+++ b/misc.c
@@ -1,4 +1,5 @@
-/* Copyright (C) 1988, 89, 90, 91, 92, 93, 94 Free Software Foundation, Inc.
+/* Miscellaneous generic support functions for GNU Make.
+Copyright (C) 1988, 89, 90, 91, 92, 93, 94 Free Software Foundation, Inc.
This file is part of GNU Make.
GNU Make is free software; you can redistribute it and/or modify
diff --git a/read.c b/read.c
index 9da39270..fdb8be2f 100644
--- a/read.c
+++ b/read.c
@@ -1,5 +1,5 @@
-/* Copyright (C) 1988, 1989, 1990, 1991, 1992, 1993, 1994
- Free Software Foundation, Inc.
+/* Reading and parsing of makefiles for GNU Make.
+Copyright (C) 1988, 89, 90, 91, 92, 93, 94 Free Software Foundation, Inc.
This file is part of GNU Make.
GNU Make is free software; you can redistribute it and/or modify
diff --git a/remake.c b/remake.c
index 06f26010..41d1c98b 100644
--- a/remake.c
+++ b/remake.c
@@ -1,5 +1,5 @@
-/* Copyright (C) 1988, 1989, 1990, 1991, 1992, 1993
- Free Software Foundation, Inc.
+/* Basic dependency engine for GNU Make.
+Copyright (C) 1988, 1989, 1990, 1991, 1992, 1993 Free Software Foundation, Inc.
This file is part of GNU Make.
GNU Make is free software; you can redistribute it and/or modify
diff --git a/remote-cstms.c b/remote-cstms.c
index 8a415d91..6aa2c966 100644
--- a/remote-cstms.c
+++ b/remote-cstms.c
@@ -1,5 +1,4 @@
-/* This file implements an interface to the Customs daemon to do
- remote execution of commands under GNU make.
+/* GNU Make remote job exportation interface to the Customs daemon.
THIS CODE IS NOT SUPPORTED BY THE GNU PROJECT.
Please do not send bug reports or questions about it to
the Make maintainers.
diff --git a/remote-stub.c b/remote-stub.c
index 23f189f8..24a860b2 100644
--- a/remote-stub.c
+++ b/remote-stub.c
@@ -1,4 +1,5 @@
-/* Copyright (C) 1988, 1989, 1992, 1993 Free Software Foundation, Inc.
+/* Template for the remote job exportation interface to GNU Make.
+Copyright (C) 1988, 1989, 1992, 1993 Free Software Foundation, Inc.
This file is part of GNU Make.
GNU Make is free software; you can redistribute it and/or modify
diff --git a/rule.h b/rule.h
index 65ba3ab4..75d43d66 100644
--- a/rule.h
+++ b/rule.h
@@ -1,4 +1,5 @@
-/* Copyright (C) 1988, 1989, 1991, 1992, 1993 Free Software Foundation, Inc.
+/* Definitions for using pattern rules in GNU Make.
+Copyright (C) 1988, 1989, 1991, 1992, 1993 Free Software Foundation, Inc.
This file is part of GNU Make.
GNU Make is free software; you can redistribute it and/or modify
diff --git a/variable.h b/variable.h
index a0c79de2..80961790 100644
--- a/variable.h
+++ b/variable.h
@@ -1,4 +1,5 @@
-/* Copyright (C) 1988, 1989, 1990, 1991, 1992 Free Software Foundation, Inc.
+/* Definitions for using variables in GNU Make.
+Copyright (C) 1988, 1989, 1990, 1991, 1992 Free Software Foundation, Inc.
This file is part of GNU Make.
GNU Make is free software; you can redistribute it and/or modify
diff --git a/vpath.c b/vpath.c
index b619eb28..84768d51 100644
--- a/vpath.c
+++ b/vpath.c
@@ -1,4 +1,5 @@
-/* Copyright (C) 1988, 1989, 1991, 1992, 1993 Free Software Foundation, Inc.
+/* Implementation of pattern-matching file search paths for GNU Make.
+Copyright (C) 1988, 1989, 1991, 1992, 1993 Free Software Foundation, Inc.
This file is part of GNU Make.
GNU Make is free software; you can redistribute it and/or modify