summaryrefslogtreecommitdiff
path: root/file.c
diff options
context:
space:
mode:
authorPaul Smith <psmith@gnu.org>1999-08-24 04:49:39 +0000
committerPaul Smith <psmith@gnu.org>1999-08-24 04:49:39 +0000
commitd0b03e9355d18a6e035c3ee2e7f0ba895739ab28 (patch)
tree403c181876c223168faf3d499829991943495c1f /file.c
parent5dc4b92b606351290d979371da4a500ce8f6a57e (diff)
downloadgunmake-d0b03e9355d18a6e035c3ee2e7f0ba895739ab28.tar.gz
* Terminology change in docs and code.
Diffstat (limited to 'file.c')
-rw-r--r--file.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/file.c b/file.c
index 411f517..8fa759c 100644
--- a/file.c
+++ b/file.c
@@ -620,9 +620,9 @@ print_file (f)
putchar ('\n');
if (f->precious)
- puts (_("# Precious file (dependency of .PRECIOUS)."));
+ puts (_("# Precious file (prerequisite of .PRECIOUS)."));
if (f->phony)
- puts (_("# Phony target (dependency of .PHONY)."));
+ puts (_("# Phony target (prerequisite of .PHONY)."));
if (f->cmd_target)
puts (_("# Command-line target."));
if (f->dontcare)
@@ -632,7 +632,7 @@ print_file (f)
if (f->stem != 0)
printf (_("# Implicit/static pattern stem: `%s'\n"), f->stem);
if (f->intermediate)
- puts (_("# File is an intermediate dependency."));
+ puts (_("# File is an intermediate prerequisite."));
if (f->also_make != 0)
{
fputs (_("# Also makes:"), stdout);