X-Git-Url: http://git.linex4red.de/pub/USBasp.git/blobdiff_plain/bb85d083a7899890d0c14502078f6fa60a09d5df..d6a7df4f78898957fa6d5b63e62015ce763560d4:/BuildTests/StaticAnalysisTest/makefile diff --git a/BuildTests/StaticAnalysisTest/makefile b/BuildTests/StaticAnalysisTest/makefile index 766bf080c..a3db8c456 100644 --- a/BuildTests/StaticAnalysisTest/makefile +++ b/BuildTests/StaticAnalysisTest/makefile @@ -1,23 +1,50 @@ -# -# LUFA Library -# Copyright (C) Dean Camera, 2011. -# -# dean [at] fourwalledcubicle [dot] com -# www.lufa-lib.org -# - -# Static anlysis of the entire LUFA source tree, using the free cross-platform "cppcheck" tool. - -# Path to the root of the LUFA tree to scan -LUFA_ROOT_PATH = ../../ - -# Filenames or directories (including fragments) to exclude from the analysis -EXCLUDE_LIST = HostLoaderApp/ FATFs/ PetiteFATFs/ uip/ - -# Output message template for found warnings and errors -MESSAGE_TEMPLATE = "{file}({line}): {severity} ({id}): {message}" - -all: - cppcheck -q -f --error-exitcode=1 --inline-suppr --enable=style --suppress=variableScope --template $(MESSAGE_TEMPLATE) $(EXCLUDE_LIST:%=-i%) $(LUFA_ROOT_PATH) - -%: \ No newline at end of file +# +# LUFA Library +# Copyright (C) Dean Camera, 2019. +# +# dean [at] fourwalledcubicle [dot] com +# www.lufa-lib.org +# + +# Static analysis of the entire LUFA source tree, using the free cross-platform "cppcheck" tool. + +# Path to the LUFA library core +LUFA_PATH := ../../LUFA/ + +CPPCHECK_EXCLUDES := FATFs/ \ + PetiteFATFs/ \ + uip/ \ + HID/HostLoaderApp/ + +CPPCHECK_INCLUDES := $(patsubst %/,%,$(LUFA_PATH))/CodeTemplates/ \ + $(patsubst %/,%,$(LUFA_PATH))/../Projects/AVRISP-MKII/ + +CPPCHECK_FLAGS := -U TEMPLATE_FUNC_NAME -U __GNUC__ -U __DOXYGEN__ + +CPPCHECK_SUPPRESS := variableScope missingInclude noValidConfiguration unusedFunction knownConditionTrueFalse ConfigurationNotChecked + +CPPCHECK_FAIL_ON_WARNING := N + +SRC := $(patsubst %/,%,$(LUFA_PATH))/.. + +# Build test cannot be run with multiple parallel jobs +.NOTPARALLEL: + +all: begin cppcheck end + +begin: + @echo Executing build test "StaticAnalysisTest". + @echo + +end: + @echo Build test "StaticAnalysisTest" complete. + @echo + +%: + +.PHONY: all begin end + +# Include common DMBS build system modules +DMBS_PATH ?= $(LUFA_PATH)/Build/DMBS/DMBS +include $(DMBS_PATH)/core.mk +include $(DMBS_PATH)/cppcheck.mk