aboutsummaryrefslogtreecommitdiffstats
path: root/Demos/Host/ClassDriver/makefile
diff options
context:
space:
mode:
authorDean Camera <dean@fourwalledcubicle.com>2009-09-21 10:49:06 +0000
committerDean Camera <dean@fourwalledcubicle.com>2009-09-21 10:49:06 +0000
commit3ffa7543a05761a0c69144c9b66196b08d8f1249 (patch)
tree194ed0ef1c4c2f82b84100a8eb95128fce4014af /Demos/Host/ClassDriver/makefile
parentf5c645296c837c85ff915a615cf1fd3193b91d7d (diff)
downloadlufa-3ffa7543a05761a0c69144c9b66196b08d8f1249.tar.gz
lufa-3ffa7543a05761a0c69144c9b66196b08d8f1249.tar.bz2
lufa-3ffa7543a05761a0c69144c9b66196b08d8f1249.zip
Finish initial draft of the Host Mode HID Class driver.
Add new MouseHostWithParser and KeyboardHostWithParser Host Class driver demos.
Diffstat (limited to 'Demos/Host/ClassDriver/makefile')
-rw-r--r--Demos/Host/ClassDriver/makefile8
1 files changed, 8 insertions, 0 deletions
diff --git a/Demos/Host/ClassDriver/makefile b/Demos/Host/ClassDriver/makefile
index f301021da..a20746dab 100644
--- a/Demos/Host/ClassDriver/makefile
+++ b/Demos/Host/ClassDriver/makefile
@@ -20,9 +20,15 @@ all:
make -C KeyboardHost clean
make -C KeyboardHost all
+ make -C KeyboardHostWithParser clean
+ make -C KeyboardHostWithParser all
+
make -C MouseHost clean
make -C MouseHost all
+ make -C MouseHostWithParser clean
+ make -C MouseHostWithParser all
+
make -C MassStorageHost clean
make -C MassStorageHost all
@@ -32,6 +38,8 @@ all:
%:
make -C CDCHost $@
make -C KeyboardHost $@
+ make -C KeyboardHostWithParser $@
make -C MouseHost $@
+ make -C MouseHostWithParser $@
make -C MassStorageHost $@
make -C StillImageHost $@