minor rename build folder

This commit is contained in:
hathach 2020-12-11 13:33:28 +07:00
parent 5b1798b43a
commit d081b62be0
3 changed files with 3 additions and 3 deletions

View file

@ -44,7 +44,7 @@ for port in all_ports:
all_boards.sort()
for board in all_boards:
build_dir = "{}/_build/build-{}".format(port, board)
build_dir = "{}/_build/{}".format(port, board)
start_time = time.monotonic()
#subprocess.run("make -j -C {} BOARD={} clean".format(port, board), shell=True, stdout=subprocess.PIPE, stderr=subprocess.STDOUT)

View file

@ -7,7 +7,7 @@
PYTHON3 ?= python3
# Build directory
BUILD = _build/build-$(BOARD)
BUILD = _build/$(BOARD)
SELF_BUILD = self_update/$(BUILD)
BIN = _bin/$(BOARD)
TOP = ../..

View file

@ -34,7 +34,7 @@ ifeq ($(filter $(BOARD),$(BOARD_LIST)),)
endif
# Build directory
BUILD = _build/build-$(BOARD)
BUILD = _build/$(BOARD)
BIN = _bin/$(BOARD)
#-------------- Source files and compiler flags --------------