summaryrefslogtreecommitdiff
path: root/cmd/Makefile
diff options
context:
space:
mode:
authorJan-Marek Glogowski <glogow@fbihome.de>2020-05-05 12:29:36 +0000
committerJan-Marek Glogowski <glogow@fbihome.de>2020-05-05 12:29:36 +0000
commit80f07d6746e572c508082b4da92c08b56953092e (patch)
tree0e73b5a3f48e307d5c7837f7d409d99e2470ae1e /cmd/Makefile
parent77559593f704b95bcbd14776f6dbf63b293b3b7c (diff)
downloadnss-hg-80f07d6746e572c508082b4da92c08b56953092e.tar.gz
Bug 290526 Drop double-colon usage and add directory depends r=rrelyea
Double-colon rule behaviour isn't really compatible with parallel build. This gets rid of all of them, so we can codify the directory dependencies. This leaves just three problems, which aren't really fixable with the current build system without completely replacing it: * everything depends on nsinstall * everything depends on installed headers * ckfw child directories depend on the build parent libs This is handled by the prepare_build target. Overall this allows most if the build to run in parallel. P.S. the release_md:: has to stay :-( P.P.S. no clue, why freebl must use libs: instead of using the TARGETS and .PHONY variables Differential Revision: https://phabricator.services.mozilla.com/D69023
Diffstat (limited to 'cmd/Makefile')
-rw-r--r--cmd/Makefile4
1 files changed, 3 insertions, 1 deletions
diff --git a/cmd/Makefile b/cmd/Makefile
index 86ef29ad4..292c73723 100644
--- a/cmd/Makefile
+++ b/cmd/Makefile
@@ -38,7 +38,9 @@ INCLUDES += \
-I./include \
$(NULL)
+$(SOFTOKEN_SRCDIRS) $(NSS_SRCDIRS): $(LIB_SRCDIRS)
+
include $(CORE_DEPTH)/coreconf/rules.mk
-symbols::
+symbols:
@echo "TARGETS = $(TARGETS)"