Clean up BUILD module info output formatting, remove explicit gcc-version target...
[pub/USBasp.git] / BuildTests / StaticAnalysisTest / makefile
1 #
2 # LUFA Library
3 # Copyright (C) Dean Camera, 2012.
4 #
5 # dean [at] fourwalledcubicle [dot] com
6 # www.lufa-lib.org
7 #
8
9 # Static anlysis of the entire LUFA source tree, using the free cross-platform "cppcheck" tool.
10
11 # Path to the LUFA library core
12 LUFA_PATH := ../../LUFA/
13
14 CPPCHECK_EXCLUDES := FATFs/ \
15 PetiteFATFs/ \
16 uip/
17 CPPCHECK_INCLUDES := $(patsubst %/,%,$(LUFA_PATH))/CodeTemplates/ \
18 $(patsubst %/,%,$(LUFA_PATH))/../Projects/AVRISP-MKII/
19
20 SRC := $(patsubst %/,%,$(LUFA_PATH))/..
21
22 all: begin cppcheck end
23
24 begin:
25 @echo Executing build test "StaticAnalysisTest".
26 @echo
27
28 end:
29 @echo Build test "StaticAnalysisTest" complete.
30 @echo
31
32 %:
33
34
35 .PHONY: all begin end
36
37 # Include LUFA build script makefiles
38 include $(LUFA_PATH)/Build/lufa_core.mk
39 include $(LUFA_PATH)/Build/lufa_cppcheck.mk