1
0
Fork 0
mirror of https://github.com/betaflight/betaflight.git synced 2025-07-13 11:29:58 +03:00

Wrong case

This commit is contained in:
blckmn 2025-05-23 19:38:16 +10:00
parent 1351ce1cac
commit e0301dcfbb

View file

@ -645,23 +645,23 @@ $(TARGETS_ZIP):
$(V0) $(MAKE) hex TARGET=$(subst _zip,,$@) $(V0) $(MAKE) hex TARGET=$(subst _zip,,$@)
$(V0) $(MAKE) zip TARGET=$(subst _zip,,$@) $(V0) $(MAKE) zip TARGET=$(subst _zip,,$@)
.phony: zip .PHONY: zip
zip: zip:
$(V0) zip $(TARGET_ZIP) $(TARGET_HEX) $(V0) zip $(TARGET_ZIP) $(TARGET_HEX)
.phony: binary .PHONY: binary
binary: binary:
$(V0) $(MAKE) $(MAKE_PARALLEL) $(TARGET_BIN) $(V0) $(MAKE) $(MAKE_PARALLEL) $(TARGET_BIN)
.phony: hex .PHONY: hex
hex: hex:
$(V0) $(MAKE) $(MAKE_PARALLEL) $(TARGET_HEX) $(V0) $(MAKE) $(MAKE_PARALLEL) $(TARGET_HEX)
.phony: uf2 .PHONY: uf2
uf2: uf2:
$(V0) $(MAKE) $(MAKE_PARALLEL) $(TARGET_UF2) $(V0) $(MAKE) $(MAKE_PARALLEL) $(TARGET_UF2)
.phony: exe .PHONY: exe
exe: $(TARGET_EXE) exe: $(TARGET_EXE)
TARGETS_REVISION = $(addsuffix _rev,$(HEX_TARGETS)) TARGETS_REVISION = $(addsuffix _rev,$(HEX_TARGETS))
@ -698,7 +698,7 @@ $(DIRECTORIES):
version: version:
@echo $(FC_VER) @echo $(FC_VER)
.phony: submodules .PHONY: submodules
submodules: submodules:
@echo "Updating submodules" @echo "Updating submodules"
$(V1) git submodule update --init --recursive || { echo "Failed to update submodules"; exit 1; } $(V1) git submodule update --init --recursive || { echo "Failed to update submodules"; exit 1; }