Revert "[Build] Added MAKE_FLAGS variable to Makefile"
This reverts commit c5e9da985a
.
This commit is contained in:
parent
061c6ce16d
commit
0eced9fb8a
7
Makefile
7
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
|
||||
|
|
Loading…
Reference in New Issue