diff options
author | Dean Camera <dean@fourwalledcubicle.com> | 2012-02-19 01:17:54 +0000 |
---|---|---|
committer | Dean Camera <dean@fourwalledcubicle.com> | 2012-02-19 01:17:54 +0000 |
commit | 2f036ae2bfddb37840c6041595eb994efad8954d (patch) | |
tree | ff18a61d50f7288b7a52a2891a80c16719317739 /BuildTests/makefile | |
parent | 1132488e8f80b43473ce4e53db9dd8ce12e87e13 (diff) | |
download | lufa-2f036ae2bfddb37840c6041595eb994efad8954d.tar.gz lufa-2f036ae2bfddb37840c6041595eb994efad8954d.tar.bz2 lufa-2f036ae2bfddb37840c6041595eb994efad8954d.zip |
Add build test for forced single USB modes.
Fix UC3 Interrupt Management platform driver not compiling under C++.
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 bc71160bd..26b29ed9b 100644 --- a/BuildTests/makefile +++ b/BuildTests/makefile @@ -11,9 +11,10 @@ # not intended to be modified or compiled by non-developers.
all:
- $(MAKE) -C ModuleTest clean
$(MAKE) -C ModuleTest all
+ $(MAKE) -C SingleUSBModeTest all
%:
$(MAKE) -C ModuleTest $@
+ $(MAKE) -C SingleUSBModeTest $@
|