diff options
author | Dean Camera <dean@fourwalledcubicle.com> | 2012-06-03 19:44:15 +0000 |
---|---|---|
committer | Dean Camera <dean@fourwalledcubicle.com> | 2012-06-03 19:44:15 +0000 |
commit | c7344c22ac700dacf55a8dc729111dd7781c5fed (patch) | |
tree | 2b7465f2f90c00065189f1aac019a7c4707660ad /BuildTests/StaticAnalysisTest/makefile | |
parent | 41b4c5b645ffe8ae3c22af00e6613c4dec8758be (diff) | |
download | lufa-c7344c22ac700dacf55a8dc729111dd7781c5fed.tar.gz lufa-c7344c22ac700dacf55a8dc729111dd7781c5fed.tar.bz2 lufa-c7344c22ac700dacf55a8dc729111dd7781c5fed.zip |
Switch StaticAnalysisTest build test to use the new build system CPPCHECK module. Update additional build tests to all include the core build system module.
Diffstat (limited to 'BuildTests/StaticAnalysisTest/makefile')
-rw-r--r-- | BuildTests/StaticAnalysisTest/makefile | 37 |
1 files changed, 12 insertions, 25 deletions
diff --git a/BuildTests/StaticAnalysisTest/makefile b/BuildTests/StaticAnalysisTest/makefile index 1578412f9..6f138af89 100644 --- a/BuildTests/StaticAnalysisTest/makefile +++ b/BuildTests/StaticAnalysisTest/makefile @@ -8,30 +8,16 @@ # 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 = ../..
+LUFA_ROOT_PATH = ../..
-# Filenames or directories (including fragments) to exclude from the analysis
-EXCLUDE_LIST = FATFs/ \
+CPPCHECK_EXCLUDES = FATFs/ \
PetiteFATFs/ \
uip/
+CPPCHECK_INCLUDES = $(LUFA_ROOT_PATH)/LUFA/CodeTemplates/ \
+ $(LUFA_ROOT_PATH)/Projects/AVRISP-MKII/
+CPPCHECK_PATH = $(LUFA_ROOT_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 \
- missingInclude
-
-# Extra paths to search for include files
-INCLUDE_PATHS = $(LUFA_ROOT_PATH)/LUFA/CodeTemplates/ \
- $(LUFA_ROOT_PATH)/Projects/AVRISP-MKII/
-
-# Configuration options to pass to cppcheck
-CPPCHECK_OPTIONS = --template=$(MESSAGE_TEMPLATE) $(INCLUDE_PATHS:%=-I%) $(EXCLUDE_LIST:%=-i%) --inline-suppr --force --error-exitcode=1 --std=c99
-
-
-all: begin staticcheck end
+all: begin cppcheck-config cppcheck end
begin:
@echo Executing build test "StaticAnalysisTest".
@@ -41,9 +27,10 @@ end: @echo Build test "StaticAnalysisTest" complete.
@echo
-staticcheck:
- cppcheck --quiet $(CPPCHECK_OPTIONS) --check-config $(LUFA_ROOT_PATH)
- cppcheck --quiet $(CPPCHECK_OPTIONS) --enable=all $(SUPPRESS_WARNINGS:%=--suppress=%) $(LUFA_ROOT_PATH)
-
%:
-
\ No newline at end of file +
+.PHONY: all begin end
+
+# Include LUFA build script makefiles
+include $(LUFA_ROOT_PATH)/LUFA/Build/lufa.core.in
+include $(LUFA_ROOT_PATH)/LUFA/Build/lufa.cppcheck.in
\ No newline at end of file |