X-Git-Url: http://git.linex4red.de/pub/USBasp.git/blobdiff_plain/c8f7cf7621e8c0ec9566b918a81de9726b75e0ef..d6a7df4f78898957fa6d5b63e62015ce763560d4:/BuildTests/StaticAnalysisTest/makefile diff --git a/BuildTests/StaticAnalysisTest/makefile b/BuildTests/StaticAnalysisTest/makefile index abac69e90..a3db8c456 100644 --- a/BuildTests/StaticAnalysisTest/makefile +++ b/BuildTests/StaticAnalysisTest/makefile @@ -1,26 +1,34 @@ # # LUFA Library -# Copyright (C) Dean Camera, 2012. +# Copyright (C) Dean Camera, 2019. # # 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 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/ + uip/ \ + HID/HostLoaderApp/ CPPCHECK_INCLUDES := $(patsubst %/,%,$(LUFA_PATH))/CodeTemplates/ \ $(patsubst %/,%,$(LUFA_PATH))/../Projects/AVRISP-MKII/ -CPPCHECK_FLAGS := -U TEMPLATE_FUNC_NAME +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: all: begin cppcheck end @@ -33,10 +41,10 @@ end: @echo %: - .PHONY: all begin end -# Include LUFA build script makefiles -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 modules +DMBS_PATH ?= $(LUFA_PATH)/Build/DMBS/DMBS +include $(DMBS_PATH)/core.mk +include $(DMBS_PATH)/cppcheck.mk