X-Git-Url: http://git.linex4red.de/pub/lufa.git/blobdiff_plain/9ffeac6992774224ebc279e346f99d5ed725bcd9..940145ca6d112782020c8570070c14ba57fdec20:/BuildTests/StaticAnalysisTest/makefile diff --git a/BuildTests/StaticAnalysisTest/makefile b/BuildTests/StaticAnalysisTest/makefile index 8b15a7159..d2151eed1 100644 --- a/BuildTests/StaticAnalysisTest/makefile +++ b/BuildTests/StaticAnalysisTest/makefile @@ -1,6 +1,6 @@ # # LUFA Library -# Copyright (C) Dean Camera, 2011. +# Copyright (C) Dean Camera, 2012. # # dean [at] fourwalledcubicle [dot] com # www.lufa-lib.org @@ -8,26 +8,17 @@ # 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 = ../.. +# Path to the LUFA library core +LUFA_PATH = ../../LUFA/ -# Filenames or directories (including fragments) to exclude from the analysis -EXCLUDE_LIST = FATFs/ \ +CPPCHECK_EXCLUDES = FATFs/ \ PetiteFATFs/ \ - uip/ + uip/ +CPPCHECK_INCLUDES = $(patsubst %/,%,$(LUFA_PATH))/CodeTemplates/ \ + $(patsubst %/,%,$(LUFA_PATH))/../Projects/AVRISP-MKII/ +CPPCHECK_PATH = $(patsubst %/,%,$(LUFA_PATH))/.. -# Output message template for found warnings and errors -MESSAGE_TEMPLATE = "{file}:{line}: {severity} ({id}): {message}" - -# Checks to suppress so that generated warnings are discarded -SUPPRESS_WARNINGS = variableScope \ - unusedFunction - -# Extra paths to search for include files -INCLUDE_PATHS = $(LUFA_ROOT_PATH)/LUFA/CodeTemplates/ - - -all: begin staticcheck end +all: begin cppcheck-config cppcheck end begin: @echo Executing build test "StaticAnalysisTest". @@ -37,8 +28,11 @@ end: @echo Build test "StaticAnalysisTest" complete. @echo -staticcheck: - cppcheck --quiet --inline-suppr --check-config $(SUPPRESS_WARNINGS:%=--suppress=%) --template=$(MESSAGE_TEMPLATE) $(INCLUDE_PATHS:%=-I%) $(EXCLUDE_LIST:%=-i%) $(LUFA_ROOT_PATH) - cppcheck --quiet --inline-suppr --error-exitcode=1 --std=c99 --force --enable=all --inconclusive $(SUPPRESS_WARNINGS:%=--suppress=%) --template=$(MESSAGE_TEMPLATE) $(INCLUDE_PATHS:%=-I%) $(EXCLUDE_LIST:%=-i%) $(LUFA_ROOT_PATH) +%: -%: \ No newline at end of file + +.PHONY: all begin end + +# Include LUFA build script makefiles +include $(LUFA_PATH)/Build/lufa.core.in +include $(LUFA_PATH)/Build/lufa.cppcheck.in \ No newline at end of file