summaryrefslogtreecommitdiffstats
path: root/build/core/pathmap.mk
diff options
context:
space:
mode:
Diffstat (limited to 'build/core/pathmap.mk')
-rw-r--r--build/core/pathmap.mk29
1 files changed, 0 insertions, 29 deletions
diff --git a/build/core/pathmap.mk b/build/core/pathmap.mk
deleted file mode 100644
index b02868e1..00000000
--- a/build/core/pathmap.mk
+++ /dev/null
@@ -1,29 +0,0 @@
-# Enter project path into pathmap
-#
-# $(1): name
-# $(2): path
-#
-define project-set-path
-$(eval pathmap_PROJ += $(1):$(2))
-endef
-
-# Enter variant project path into pathmap
-#
-# $(1): name
-# $(2): variable to check
-# $(3): base path
-#
-define project-set-path-variant
- $(call project-set-path,$(1),$(strip \
- $(if $($(2)), \
- $(3)-$($(2)), \
- $(3))))
-endef
-
-# Returns the path to the requested module's include directory,
-# relative to the root of the source tree.
-#
-# $(1): a list of modules (or other named entities) to find the projects for
-define project-path-for
-$(foreach n,$(1),$(patsubst $(n):%,%,$(filter $(n):%,$(pathmap_PROJ))))
-endef