summaryrefslogtreecommitdiff
path: root/digital/avr/modules/usb/lufa/Bootloaders/makefile
diff options
context:
space:
mode:
Diffstat (limited to 'digital/avr/modules/usb/lufa/Bootloaders/makefile')
-rw-r--r--digital/avr/modules/usb/lufa/Bootloaders/makefile29
1 files changed, 29 insertions, 0 deletions
diff --git a/digital/avr/modules/usb/lufa/Bootloaders/makefile b/digital/avr/modules/usb/lufa/Bootloaders/makefile
new file mode 100644
index 00000000..78af34d6
--- /dev/null
+++ b/digital/avr/modules/usb/lufa/Bootloaders/makefile
@@ -0,0 +1,29 @@
+#
+# LUFA Library
+# Copyright (C) Dean Camera, 2009.
+#
+# dean [at] fourwalledcubicle [dot] com
+# www.fourwalledcubicle.com
+#
+
+# Makefile to build all the LUFA USB Bootloaders. Call with "make all" to
+# rebuild all bootloaders.
+
+# Bootloaders are pre-cleaned before each one is built, to ensure any
+# custom LUFA library build options are reflected in the compiled
+# code.
+
+all:
+ make -C 'DFU/' clean
+ make -C 'DFU/' all
+
+ make -C 'CDC/' clean
+ make -C 'CDC/' all
+
+ make -C 'TeensyHID/' clean
+ make -C 'TeensyHID/' all
+
+%:
+ make -C 'DFU/' $@
+ make -C 'CDC/' $@
+ make -C 'TeensyHID/' $@