X-Git-Url: http://git.linex4red.de/pub/USBasp.git/blobdiff_plain/7f9f97c792dee6875fbca9806422bdd7d6c5a657..e24993c13aa30115b5ef5e4877dbb610efd9626e:/Demos/Host/ClassDriver/makefile diff --git a/Demos/Host/ClassDriver/makefile b/Demos/Host/ClassDriver/makefile index 370009401..aa8fa3696 100644 --- a/Demos/Host/ClassDriver/makefile +++ b/Demos/Host/ClassDriver/makefile @@ -1,9 +1,9 @@ # # LUFA Library -# Copyright (C) Dean Camera, 2010. -# +# Copyright (C) Dean Camera, 2012. +# # dean [at] fourwalledcubicle [dot] com -# www.fourwalledcubicle.com +# www.lufa-lib.org # # Makefile to build all the LUFA Host Demos. Call with "make all" to @@ -14,47 +14,34 @@ # code. all: - make -C JoystickHostWithParser clean - make -C JoystickHostWithParser all - - make -C KeyboardHost clean - make -C KeyboardHost all - - make -C KeyboardHostWithParser clean - make -C KeyboardHostWithParser all - - make -C MIDIHost clean - make -C MIDIHost all - - make -C MouseHost clean - make -C MouseHost all - - make -C MouseHostWithParser clean - make -C MouseHostWithParser all + $(MAKE) -s -C AndroidAccessoryHost clean all + $(MAKE) -s -C AudioInputHost clean all + $(MAKE) -s -C AudioOutputHost clean all + $(MAKE) -s -C JoystickHostWithParser clean all + $(MAKE) -s -C KeyboardHost clean all + $(MAKE) -s -C KeyboardHostWithParser clean all + $(MAKE) -s -C MassStorageHost clean all + $(MAKE) -s -C MIDIHost clean all + $(MAKE) -s -C MouseHost clean all + $(MAKE) -s -C MouseHostWithParser clean all + $(MAKE) -s -C PrinterHost clean all + $(MAKE) -s -C RNDISEthernetHost clean all + $(MAKE) -s -C StillImageHost clean all + $(MAKE) -s -C VirtualSerialHost clean all - make -C MassStorageHost clean - make -C MassStorageHost all - - make -C PrinterHost clean - make -C PrinterHost all - - make -C RNDISEthernetHost clean - make -C RNDISEthernetHost all - - make -C StillImageHost clean - make -C StillImageHost all - - make -C VirtualSerialHost clean - make -C VirtualSerialHost all - %: - make -C JoystickHostWithParser $@ - make -C KeyboardHost $@ - make -C KeyboardHostWithParser $@ - make -C MouseHost $@ - make -C MouseHostWithParser $@ - make -C MassStorageHost $@ - make -C PrinterHost $@ - make -C RNDISEthernetHost $@ - make -C StillImageHost $@ - make -C VirtualSerialHost $@ + $(MAKE) -s -C AndroidAccessoryHost $@ + $(MAKE) -s -C AudioInputHost $@ + $(MAKE) -s -C AudioOutputHost $@ + $(MAKE) -s -C JoystickHostWithParser $@ + $(MAKE) -s -C KeyboardHost $@ + $(MAKE) -s -C KeyboardHostWithParser $@ + $(MAKE) -s -C MassStorageHost $@ + $(MAKE) -s -C MIDIHost $@ + $(MAKE) -s -C MouseHost $@ + $(MAKE) -s -C MouseHostWithParser $@ + $(MAKE) -s -C PrinterHost $@ + $(MAKE) -s -C RNDISEthernetHost $@ + $(MAKE) -s -C StillImageHost $@ + $(MAKE) -s -C VirtualSerialHost $@ +