From f9f25b5f066f106eb556655cc6ced65b991e1259 Mon Sep 17 00:00:00 2001 From: Nuno Jesus Date: Thu, 22 Jun 2023 19:06:43 +0100 Subject: [PATCH] README: fixing typo. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index d3c1cb5..9000f00 100644 --- a/README.md +++ b/README.md @@ -619,7 +619,7 @@ $(NAME): $(OBJS) You can find the code in the [code/example-6](/code/example-6/) folder. This version does the same job as before. The main difference lies in the new dependency of `all`. The first compilation will assert the project executable is not a file, so it must be remade through the `$(NAME)` rule. In the second run, however, since the `project` file was created before, the dependency is fulfilled and the Makefile directly attempts to execute the `all` recipe. Since it's empty and no other recipes were run, you'll get this message: - make: Nothinsub-Makeg to be done for 'all'. + make: Nothing to be done for 'all'. And there you have it! I hope this beginner's guide cleared a bit of your doubts. If you're not a beginner (or don't want to be one anymore), I advise you to check the contents up ahead. Many of those might be useful to change and upgrade your Makefiles!