From 45f7d6cff8d61993761626a3bcf4dc4c92284de9 Mon Sep 17 00:00:00 2001 From: Giorgos Keramidas Date: Mon, 18 Feb 2002 00:56:57 +0000 Subject: [PATCH] Change to . PR: 34922 Submitted by: Ceri --- .../books/developers-handbook/tools/chapter.sgml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/en_US.ISO8859-1/books/developers-handbook/tools/chapter.sgml b/en_US.ISO8859-1/books/developers-handbook/tools/chapter.sgml index d6f6422134..b106a44c26 100644 --- a/en_US.ISO8859-1/books/developers-handbook/tools/chapter.sgml +++ b/en_US.ISO8859-1/books/developers-handbook/tools/chapter.sgml @@ -1133,17 +1133,17 @@ install: make will then only look at that target and ignore any others. For example, if we type make foo with the makefile above, make - will ignore the install target. + will ignore the install target. If we just type make on its own, make will always look at the first target and then stop without looking at any others. So if we typed make here, it will just go to the - foo target, re-compile + foo target, re-compile foo if necessary, and then stop without - going on to the install target. + going on to the install target. - Notice that the install target does not + Notice that the install target does not actually depend on anything! This means that the command on the following line is always executed when we try to make that target by typing make install. In this