2016-12-25 13:45:12 +00:00
|
|
|
# == Variables for inter-project-communication
|
|
|
|
|
|
2019-06-29 21:34:18 +00:00
|
|
|
include $(JWBDIR)/make/platform.mk
|
2019-03-02 19:59:53 +00:00
|
|
|
|
2016-12-25 13:45:12 +00:00
|
|
|
# -- Query the build system about other projects:
|
2019-06-24 12:44:14 +00:00
|
|
|
|
2019-02-14 09:00:41 +00:00
|
|
|
ifneq ($(TOPDIR),)
|
2026-01-28 07:56:33 +01:00
|
|
|
proj_query_cmd = $(JW_PKG_PY) projects
|
2019-03-03 18:12:28 +00:00
|
|
|
proj_query = $(shell $(proj_query_cmd) $(1))
|
|
|
|
|
proj_dir = $(call proj_query,proj-dir $(1))
|
|
|
|
|
htdocs_dir = $(call proj_query,htdocs-dir $(1))
|
2025-12-17 12:36:40 +01:00
|
|
|
tmpl_dir = $(call proj_query,tmpl-dir $(1))
|
2019-02-14 09:00:41 +00:00
|
|
|
endif
|