diff options
author | Dean Camera <dean@fourwalledcubicle.com> | 2012-02-28 20:07:52 +0000 |
---|---|---|
committer | Dean Camera <dean@fourwalledcubicle.com> | 2012-02-28 20:07:52 +0000 |
commit | b762780343dd505f7bfe5673cbcffb0b938d7064 (patch) | |
tree | 1b4db7396aaa0cdbd6af8ff8770defa2162c86ff /BuildTests/makefile | |
parent | f5c155cf057d286b435f4dbf0cba98fc37dd87b7 (diff) | |
download | lufa-b762780343dd505f7bfe5673cbcffb0b938d7064.tar.gz lufa-b762780343dd505f7bfe5673cbcffb0b938d7064.tar.bz2 lufa-b762780343dd505f7bfe5673cbcffb0b938d7064.zip |
Add source static analysis build test using "cppcheck".
Diffstat (limited to 'BuildTests/makefile')
-rw-r--r-- | BuildTests/makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/BuildTests/makefile b/BuildTests/makefile index 26b29ed9b..e29643613 100644 --- a/BuildTests/makefile +++ b/BuildTests/makefile @@ -13,8 +13,9 @@ all:
$(MAKE) -C ModuleTest all
$(MAKE) -C SingleUSBModeTest all
+ $(MAKE) -C StaticAnalysisTest all
%:
$(MAKE) -C ModuleTest $@
$(MAKE) -C SingleUSBModeTest $@
-
+ $(MAKE) -C StaticAnalysisTest $@
|