From 5f04f185dd551dfe4a0a8212b4f845938e552a2c Mon Sep 17 00:00:00 2001 From: Alejandro Colomar Date: Sat, 22 Apr 2023 14:12:59 +0200 Subject: Makefile: Update and remove comments - We don't use %/. for directories anymore. - %/ targets are obviously directories; no need to say. - Don't need to document how we create directories. That should be obvious from the code. Fixes: ac288b42c ("*.mk: Remove unnecessary '.' after directory names (but keep the '/')") Signed-off-by: Alejandro Colomar --- Makefile | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/Makefile b/Makefile index a19ae0b72..9f5fd84de 100644 --- a/Makefile +++ b/Makefile @@ -18,11 +18,7 @@ # - Variables ending in '_rm' refer to files that can be removed (exist). # - Variables ending in '_rmdir' refer to dirs that can be removed (exist). # - Targets of the form '%-rm' remove their corresponding file '%'. -# - Targets of the form '%/.-rmdir' remove their corresponding dir '%/'. -# - Targets of the form '%/.' create their corresponding directory '%/'. -# - Every file or directory to be created depends on its parent directory. -# This avoids race conditions caused by `mkdir -p`. Only the root -# directories are created with parents. +# - Targets of the form '%-rmdir' remove their corresponding dir '%'. # - The 'FORCE' target is used to make phony some variables that can't be # .PHONY to avoid some optimizations. # -- cgit v1.2.3