diff options
author | Ed Maste <emaste@FreeBSD.org> | 2025-05-23 19:40:50 +0000 |
---|---|---|
committer | Ed Maste <emaste@FreeBSD.org> | 2025-05-23 19:46:12 +0000 |
commit | 554f43c0a7afc3e7e6d78611c8bb8fb41f7810e7 (patch) | |
tree | a27aaf67a5d0bfcd75f372ee80db22fbb8920864 /documentation/content/en/books/developers-handbook/tools | |
parent | facf07474a1d39073b9d361154b8f7ca4ac276a1 (diff) |
Diffstat (limited to 'documentation/content/en/books/developers-handbook/tools')
-rw-r--r-- | documentation/content/en/books/developers-handbook/tools/_index.adoc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/documentation/content/en/books/developers-handbook/tools/_index.adoc b/documentation/content/en/books/developers-handbook/tools/_index.adoc index d6ef9ec467..608851ecc7 100644 --- a/documentation/content/en/books/developers-handbook/tools/_index.adoc +++ b/documentation/content/en/books/developers-handbook/tools/_index.adoc @@ -530,7 +530,7 @@ In other words, this is the rule which tells make how to re-compile [.filename]# So, when you type `make`, it will make sure that [.filename]#foo# is up to date with respect to your latest changes to [.filename]#foo.c#. This principle can be extended to [.filename]#Makefile#'s with hundreds of targets-in fact, on FreeBSD, -it is possible to compile the entire operating system just by typing `make world` in the appropriate directory! +it is possible to compile the entire operating system just by typing `make buildworld` at the top level directory in the src tree. Another useful property of makefiles is that the targets do not have to be programs. For instance, we could have a make file that looks like this: |