projects
/
pub
/
USBasp.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
StaticAnalysis: Only fail on errors, only log warnings.
[pub/USBasp.git]
/
BuildTests
/
StaticAnalysisTest
/
makefile
diff --git
a/BuildTests/StaticAnalysisTest/makefile
b/BuildTests/StaticAnalysisTest/makefile
index
4e166ed
..
a3db8c4
100644
(file)
--- a/
BuildTests/StaticAnalysisTest/makefile
+++ b/
BuildTests/StaticAnalysisTest/makefile
@@
-1,26
+1,31
@@
#
# LUFA Library
#
# LUFA Library
-# Copyright (C) Dean Camera, 201
3
.
+# Copyright (C) Dean Camera, 201
9
.
#
# dean [at] fourwalledcubicle [dot] com
# www.lufa-lib.org
#
#
# dean [at] fourwalledcubicle [dot] com
# www.lufa-lib.org
#
-# Static anlysis of the entire LUFA source tree, using the free cross-platform "cppcheck" tool.
+# Static an
a
lysis 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/ \
# Path to the LUFA library core
LUFA_PATH := ../../LUFA/
CPPCHECK_EXCLUDES := FATFs/ \
PetiteFATFs/ \
- uip/
+ uip/ \
+ HID/HostLoaderApp/
CPPCHECK_INCLUDES := $(patsubst %/,%,$(LUFA_PATH))/CodeTemplates/ \
$(patsubst %/,%,$(LUFA_PATH))/../Projects/AVRISP-MKII/
CPPCHECK_INCLUDES := $(patsubst %/,%,$(LUFA_PATH))/CodeTemplates/ \
$(patsubst %/,%,$(LUFA_PATH))/../Projects/AVRISP-MKII/
-CPPCHECK_FLAGS := -U TEMPLATE_FUNC_NAME -U __GNUC__ -U __DOXYGEN__
+CPPCHECK_FLAGS
:= -U TEMPLATE_FUNC_NAME -U __GNUC__ -U __DOXYGEN__
-SRC := $(patsubst %/,%,$(LUFA_PATH))/..
+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:
# Build test cannot be run with multiple parallel jobs
.NOTPARALLEL:
@@
-36,10
+41,10
@@
end:
@echo
%:
@echo
%:
-
.PHONY: all begin end
.PHONY: all begin end
-# Include
LUFA build script makefi
les
-include $(LUFA_PATH)/Build/lufa_core.mk
-include $(
LUFA_PATH)/Build/lufa_cppcheck
.mk
\ No newline at end of file
+# Include
common DMBS build system modu
les
+DMBS_PATH ?= $(LUFA_PATH)/Build/DMBS/DMBS
+include $(
DMBS_PATH)/core
.mk
+include $(DMBS_PATH)/cppcheck.mk