diff options
Diffstat (limited to 'BuildTests/StaticAnalysisTest')
-rw-r--r-- | BuildTests/StaticAnalysisTest/makefile | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/BuildTests/StaticAnalysisTest/makefile b/BuildTests/StaticAnalysisTest/makefile index 6562a9636..a2626ec29 100644 --- a/BuildTests/StaticAnalysisTest/makefile +++ b/BuildTests/StaticAnalysisTest/makefile @@ -9,15 +9,15 @@ # Static anlysis of the entire LUFA source tree, using the free cross-platform "cppcheck" tool. # Path to the LUFA library core -LUFA_PATH = ../../LUFA/ +LUFA_PATH := ../../LUFA/ -CPPCHECK_EXCLUDES = FATFs/ \ - PetiteFATFs/ \ - uip/ -CPPCHECK_INCLUDES = $(patsubst %/,%,$(LUFA_PATH))/CodeTemplates/ \ - $(patsubst %/,%,$(LUFA_PATH))/../Projects/AVRISP-MKII/ +CPPCHECK_EXCLUDES := FATFs/ \ + PetiteFATFs/ \ + uip/ +CPPCHECK_INCLUDES := $(patsubst %/,%,$(LUFA_PATH))/CodeTemplates/ \ + $(patsubst %/,%,$(LUFA_PATH))/../Projects/AVRISP-MKII/ -SRC = $(patsubst %/,%,$(LUFA_PATH))/.. +SRC := $(patsubst %/,%,$(LUFA_PATH))/.. all: begin cppcheck-config cppcheck end |