1
0
Fork 0
mirror of https://github.com/betaflight/betaflight.git synced 2025-07-12 19:10:32 +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) 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; }