Clean up BuildTest and Maintenance makefiles - use non-recursively evaluated make variables.
This commit is contained in:
parent
90b6bf9e25
commit
43e10d666b
6 changed files with 16 additions and 16 deletions
|
|
@ -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
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue