aboutsummaryrefslogtreecommitdiffstats
path: root/Demos/Host/makefile
diff options
context:
space:
mode:
authorDean Camera <dean@fourwalledcubicle.com>2009-06-05 08:13:19 +0000
committerDean Camera <dean@fourwalledcubicle.com>2009-06-05 08:13:19 +0000
commit2793c88fc601dcc7ec4961326dd9748a20f3ec83 (patch)
tree25837c99abcc82f56d06adaa4a33c8595c332121 /Demos/Host/makefile
parentd47df1cd3a340306255b26a7112d7ff7fa6cd4e4 (diff)
downloadlufa-2793c88fc601dcc7ec4961326dd9748a20f3ec83.tar.gz
lufa-2793c88fc601dcc7ec4961326dd9748a20f3ec83.tar.bz2
lufa-2793c88fc601dcc7ec4961326dd9748a20f3ec83.zip
Add master device Host demo makefile.
Copy and convert incomplete Bluetooth Host demo to the library.
Diffstat (limited to 'Demos/Host/makefile')
-rw-r--r--Demos/Host/makefile18
1 files changed, 18 insertions, 0 deletions
diff --git a/Demos/Host/makefile b/Demos/Host/makefile
new file mode 100644
index 000000000..937c8fac8
--- /dev/null
+++ b/Demos/Host/makefile
@@ -0,0 +1,18 @@
+#
+# LUFA Library
+# Copyright (C) Dean Camera, 2009.
+#
+# dean [at] fourwalledcubicle [dot] com
+# www.fourwalledcubicle.com
+#
+
+# Makefile to build all the LUFA Class Driver and Low Level Demos. Call with
+# "make all" to rebuild all demos of both types.
+
+# Projects are pre-cleaned before each one is built, to ensure any
+# custom LUFA library build options are reflected in the compiled
+# code.
+
+%:
+ make -C ClassDriver/ $@
+ make -C LowLevel/ $@