Tidy up and add some Makefile help texts.
This commit is contained in:
parent
f53fe5c87b
commit
a686e4690a
14
Makefile
14
Makefile
|
@ -37,9 +37,9 @@ SERIAL_DEVICE ?= $(firstword $(wildcard /dev/ttyUSB*) no-port-found)
|
||||||
# Flash size (KB). Some low-end chips actually have more flash than advertised, use this to override.
|
# Flash size (KB). Some low-end chips actually have more flash than advertised, use this to override.
|
||||||
FLASH_SIZE ?=
|
FLASH_SIZE ?=
|
||||||
|
|
||||||
## Set verbosity level based on the V= parameter
|
## V : Set verbosity level based on the V= parameter
|
||||||
## V=0 Low
|
## V=0 Low
|
||||||
## v=1 High
|
## V=1 High
|
||||||
export AT := @
|
export AT := @
|
||||||
|
|
||||||
ifndef V
|
ifndef V
|
||||||
|
@ -67,7 +67,7 @@ INCLUDE_DIRS = $(SRC_DIR) \
|
||||||
$(ROOT)/src/main/target
|
$(ROOT)/src/main/target
|
||||||
LINKER_DIR = $(ROOT)/src/main/target/link
|
LINKER_DIR = $(ROOT)/src/main/target/link
|
||||||
|
|
||||||
## Build tools, so we all share the same versions
|
# Build tools, so we all share the same versions
|
||||||
# import macros common to all supported build systems
|
# import macros common to all supported build systems
|
||||||
include $(ROOT)/make/system-id.mk
|
include $(ROOT)/make/system-id.mk
|
||||||
# developer preferences, edit these at will, they'll be gitignored
|
# developer preferences, edit these at will, they'll be gitignored
|
||||||
|
@ -902,7 +902,7 @@ cppcheck: $(CSOURCES)
|
||||||
cppcheck-result.xml: $(CSOURCES)
|
cppcheck-result.xml: $(CSOURCES)
|
||||||
$(V0) $(CPPCHECK) --xml-version=2 2> cppcheck-result.xml
|
$(V0) $(CPPCHECK) --xml-version=2 2> cppcheck-result.xml
|
||||||
|
|
||||||
## mkdirs
|
# mkdirs
|
||||||
$(DL_DIR):
|
$(DL_DIR):
|
||||||
mkdir -p $@
|
mkdir -p $@
|
||||||
|
|
||||||
|
@ -913,7 +913,7 @@ $(BUILD_DIR):
|
||||||
mkdir -p $@
|
mkdir -p $@
|
||||||
|
|
||||||
## help : print this help message and exit
|
## help : print this help message and exit
|
||||||
help: Makefile
|
help: Makefile make/tools.mk
|
||||||
$(V0) @echo ""
|
$(V0) @echo ""
|
||||||
$(V0) @echo "Makefile for the $(FORKNAME) firmware"
|
$(V0) @echo "Makefile for the $(FORKNAME) firmware"
|
||||||
$(V0) @echo ""
|
$(V0) @echo ""
|
||||||
|
@ -924,7 +924,7 @@ help: Makefile
|
||||||
$(V0) @echo ""
|
$(V0) @echo ""
|
||||||
$(V0) @echo "Valid TARGET values are: $(VALID_TARGETS)"
|
$(V0) @echo "Valid TARGET values are: $(VALID_TARGETS)"
|
||||||
$(V0) @echo ""
|
$(V0) @echo ""
|
||||||
$(V0) @sed -n 's/^## //p' $<
|
$(V0) @sed -n 's/^## //p' $?
|
||||||
|
|
||||||
## targets : print a list of all valid target platforms (for consumption by scripts)
|
## targets : print a list of all valid target platforms (for consumption by scripts)
|
||||||
targets:
|
targets:
|
||||||
|
|
|
@ -18,6 +18,7 @@ ARM_SDK_DIR := $(TOOLS_DIR)/gcc-arm-none-eabi-5_4-2016q2
|
||||||
# Checked below, Should match the output of $(shell arm-none-eabi-gcc -dumpversion)
|
# Checked below, Should match the output of $(shell arm-none-eabi-gcc -dumpversion)
|
||||||
GCC_REQUIRED_VERSION := 5.4.1
|
GCC_REQUIRED_VERSION := 5.4.1
|
||||||
|
|
||||||
|
## arm_sdk_install : Install Arm SDK
|
||||||
.PHONY: arm_sdk_install
|
.PHONY: arm_sdk_install
|
||||||
|
|
||||||
# source: https://launchpad.net/gcc-arm-embedded/5.0/
|
# source: https://launchpad.net/gcc-arm-embedded/5.0/
|
||||||
|
@ -48,6 +49,7 @@ else
|
||||||
$(V1) unzip -q -d $(ARM_SDK_DIR) "$(DL_DIR)/$(ARM_SDK_FILE)"
|
$(V1) unzip -q -d $(ARM_SDK_DIR) "$(DL_DIR)/$(ARM_SDK_FILE)"
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
## arm_sdk_clean : Uninstall Arm SDK
|
||||||
.PHONY: arm_sdk_clean
|
.PHONY: arm_sdk_clean
|
||||||
arm_sdk_clean:
|
arm_sdk_clean:
|
||||||
$(V1) [ ! -d "$(ARM_SDK_DIR)" ] || $(RM) -r $(ARM_SDK_DIR)
|
$(V1) [ ! -d "$(ARM_SDK_DIR)" ] || $(RM) -r $(ARM_SDK_DIR)
|
||||||
|
|
Loading…
Reference in New Issue