mirror of
https://github.com/betaflight/betaflight.git
synced 2025-07-12 19:10:32 +03:00
Wrong case
This commit is contained in:
parent
1351ce1cac
commit
e0301dcfbb
1 changed files with 6 additions and 6 deletions
12
Makefile
12
Makefile
|
@ -645,23 +645,23 @@ $(TARGETS_ZIP):
|
|||
$(V0) $(MAKE) hex TARGET=$(subst _zip,,$@)
|
||||
$(V0) $(MAKE) zip TARGET=$(subst _zip,,$@)
|
||||
|
||||
.phony: zip
|
||||
.PHONY: zip
|
||||
zip:
|
||||
$(V0) zip $(TARGET_ZIP) $(TARGET_HEX)
|
||||
|
||||
.phony: binary
|
||||
.PHONY: binary
|
||||
binary:
|
||||
$(V0) $(MAKE) $(MAKE_PARALLEL) $(TARGET_BIN)
|
||||
|
||||
.phony: hex
|
||||
.PHONY: hex
|
||||
hex:
|
||||
$(V0) $(MAKE) $(MAKE_PARALLEL) $(TARGET_HEX)
|
||||
|
||||
.phony: uf2
|
||||
.PHONY: uf2
|
||||
uf2:
|
||||
$(V0) $(MAKE) $(MAKE_PARALLEL) $(TARGET_UF2)
|
||||
|
||||
.phony: exe
|
||||
.PHONY: exe
|
||||
exe: $(TARGET_EXE)
|
||||
|
||||
TARGETS_REVISION = $(addsuffix _rev,$(HEX_TARGETS))
|
||||
|
@ -698,7 +698,7 @@ $(DIRECTORIES):
|
|||
version:
|
||||
@echo $(FC_VER)
|
||||
|
||||
.phony: submodules
|
||||
.PHONY: submodules
|
||||
submodules:
|
||||
@echo "Updating submodules"
|
||||
$(V1) git submodule update --init --recursive || { echo "Failed to update submodules"; exit 1; }
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue