From 0eced9fb8a84e9c8b489186fa9bef3bc375ecbf6 Mon Sep 17 00:00:00 2001 From: Ganesh Gore Date: Mon, 21 Dec 2020 00:05:52 -0700 Subject: [PATCH] Revert "[Build] Added MAKE_FLAGS variable to Makefile" This reverts commit c5e9da985a2d1d806f4e46589bf2d56cb6bb29e0. --- Makefile | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/Makefile b/Makefile index bb4e4d680..d8b91a791 100644 --- a/Makefile +++ b/Makefile @@ -5,21 +5,20 @@ CMAKE_COMMAND := cmake else CMAKE_COMMAND := ${CMAKE_COMMAND} endif -MAKE_FLAGS := .PHONY: all checkout compile all: checkout mkdir -p build && cd build && $(CMAKE_COMMAND) ${CMAKE_FLAGS} .. - cd build && $(MAKE) ${MAKE_FLAGS} + cd build && $(MAKE) -checkout: +checkout: git submodule init git submodule update --init --recursive compile: mkdir -p build && cd build && $(CMAKE_COMMAND) ${CMAKE_FLAGS} .. - cd build && $(MAKE) ${MAKE_FLAGS} + cd build && $(MAKE) clean: rm -rf build