From df77ef423e0dd170ba956b8bced190751e6b16b9 Mon Sep 17 00:00:00 2001 From: Jules Villard Date: Thu, 10 Aug 2017 06:01:02 -0700 Subject: [PATCH] [make] add mod_dep target to parallelise test Summary: This takes several seconds and is better tested in parallel with the other tests instead of at the end. Reviewed By: mbouaziz Differential Revision: D5591774 fbshipit-source-id: f474cae --- Makefile | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index c1d55b2a5..83f576389 100644 --- a/Makefile +++ b/Makefile @@ -343,11 +343,14 @@ else @: endif -.PHONY: config_tests -config_tests: test_build ocaml_unit_test endtoend_test checkCopyright validate-skel +.PHONY: mod_dep +mod_dep: src_build_common $(QUIET)$(call silent_on_success,Building Infer source dependency graph,\ $(MAKE) -C $(SRC_DIR) mod_dep.dot) +.PHONY: config_tests +config_tests: test_build ocaml_unit_test endtoend_test checkCopyright validate-skel mod_dep + .PHONY: test test: crash_if_not_all_analyzers_enabled config_tests ifeq (,$(findstring s,$(MAKEFLAGS)))