X-Git-Url: http://git.linex4red.de/pub/USBasp.git/blobdiff_plain/3dce79d68ccc50ee1007e485396826762b6965b5..e24993c13aa30115b5ef5e4877dbb610efd9626e:/Demos/Host/ClassDriver/makefile diff --git a/Demos/Host/ClassDriver/makefile b/Demos/Host/ClassDriver/makefile index 71607838d..aa8fa3696 100644 --- a/Demos/Host/ClassDriver/makefile +++ b/Demos/Host/ClassDriver/makefile @@ -1,9 +1,9 @@ # # LUFA Library -# Copyright (C) Dean Camera, 2009. -# +# 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,20 +14,34 @@ # code. all: - make -C CDCHost clean - make -C CDCHost all - - make -C MouseHost clean - make -C MouseHost 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 StillImageHost clean - make -C StillImageHost all - %: - make -C CDCHost $@ - make -C MouseHost $@ - make -C MassStorageHost $@ - make -C StillImageHost $@ + $(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 $@ +