summaryrefslogtreecommitdiffstats
path: root/GNUmakefile
diff options
context:
space:
mode:
authorAlejandro Colomar <alx@kernel.org>2024-03-19 23:09:25 +0100
committerAlejandro Colomar <alx@kernel.org>2024-03-20 15:07:36 +0100
commit1632253504a78fedd23aa95fc75bc4c0c00c4fdb (patch)
tree7023ea59af4ebf04428af62a86d74d4f8cca5767 /GNUmakefile
parentd18b41345a0dcd8ee662dc656aecc69ae917744d (diff)
share/mk/: Reorganize dependencies
Use one directory per each (Debian) package, and one file per command. Signed-off-by: Alejandro Colomar <alx@kernel.org>
Diffstat (limited to 'GNUmakefile')
-rw-r--r--GNUmakefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/GNUmakefile b/GNUmakefile
index bebec00ba..835804754 100644
--- a/GNUmakefile
+++ b/GNUmakefile
@@ -27,7 +27,7 @@ all: build;
.SECONDEXPANSION:
-MK_ := $(wildcard $(addprefix $(MAKEFILEDIR)/, *.mk */*.mk */*/*.mk))
+MK_ := $(wildcard $(addprefix $(MAKEFILEDIR)/, *.mk */*.mk */*/*.mk */*/*/*.mk))
MK := $(srcdir)/GNUmakefile $(MK_)
include $(MK_)
$(MK):: ;
@@ -53,7 +53,7 @@ help:
$(info $(INFO_) | sed 's/=.*/=/' \)
$(info $(INFO_) | grep -v -e ':DEFAULT_.*=' -e ':MAKEFILE_.*INCLUDED :=';)
$(info )
- $(info $(INFO_)To see a list of dependencies, run:)
+ $(info $(INFO_)To see a list of dependencies (package/program), run:)
$(info $(INFO_) $$ find share/mk/configure/build-depends -type f \)
$(info $(INFO_) | sed 's,share/mk/configure/build-depends/,,' \)
$(info $(INFO_) | sed 's,\.mk,,' \)