From 74298f8ca11dc8d3b0359d1d4e124d6494c3eeac Mon Sep 17 00:00:00 2001 From: Nicolas Schodet Date: Fri, 10 Apr 2009 01:15:42 +0200 Subject: * digital/avr/modules/usb: - imported LUFA. --- digital/avr/modules/usb/lufa/Bootloaders/makefile | 29 +++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 digital/avr/modules/usb/lufa/Bootloaders/makefile (limited to 'digital/avr/modules/usb/lufa/Bootloaders/makefile') 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/' $@ -- cgit v1.2.3