Makefile: Don't fail if build dir already exists
This commit is contained in:
parent
ca525abe96
commit
27403e0594
1 changed files with 1 additions and 1 deletions
2
Makefile
2
Makefile
|
@ -152,7 +152,7 @@ $(BUILD_DIR)/%.bin: $(BUILD_DIR)/%.elf | $(BUILD_DIR)
|
|||
$(BIN) $< $@
|
||||
|
||||
$(BUILD_DIR):
|
||||
mkdir $@
|
||||
mkdir -p $@
|
||||
|
||||
format:
|
||||
find Src/ Inc/ -iname '*.h' -o -iname '*.c' | xargs clang-format -i
|
||||
|
|
Loading…
Reference in a new issue