From 39473960b6b2ef7f36b949d39b3af548dece55fa Mon Sep 17 00:00:00 2001 From: Jules Villard Date: Tue, 1 Aug 2017 07:33:33 -0700 Subject: [PATCH] [make] only compile infer by default Summary: Define `default` target at the very top of the Makefile to make sure some other target doesn't replace it, as was done accidentally in D5498555 Reviewed By: martinoluca Differential Revision: D5536691 fbshipit-source-id: 7398ec0 --- Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 0c00ba947..5aa590d0f 100644 --- a/Makefile +++ b/Makefile @@ -5,6 +5,9 @@ # LICENSE file in the root directory of this source tree. An additional grant # of patent rights can be found in the PATENTS file in the same directory. +.PHONY: default +default: infer + ROOT_DIR = . include $(ROOT_DIR)/Makefile.config @@ -92,9 +95,6 @@ build_waf_test: build_make_test build_waf_print: build_make_print endif -.PHONY: all -all: infer - ifeq ($(IS_INFER_RELEASE),no) configure: configure.ac $(wildcard m4/*.m4) # rerun ./autogen.sh in case of failure as the failure may be due to needing to rerun