X-Git-Url: http://git.linex4red.de/pub/USBasp.git/blobdiff_plain/f33b282009cb4385283a537a3b3ec0f64ec19bd6..5ce60f25e68ef73e01c06409b31b75cfbac9ee3f:/Projects/makefile diff --git a/Projects/makefile b/Projects/makefile index 34764b9f1..d507e76ee 100644 --- a/Projects/makefile +++ b/Projects/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 Projects. Call with "make all" to @@ -14,12 +14,34 @@ # code. all: - make -C Magstripe clean - make -C Magstripe all - - make -C MissleLauncher clean - make -C MissleLauncher all + $(MAKE) -s -C AVRISP-MKII clean all + $(MAKE) -s -C Benito clean all + $(MAKE) -s -C HIDReportViewer clean all + $(MAKE) -s -C LEDNotifier clean all + $(MAKE) -s -C Magstripe clean all + $(MAKE) -s -C MediaController clean all + $(MAKE) -s -C MIDIToneGenerator clean all + $(MAKE) -s -C MissileLauncher clean all + $(MAKE) -s -C RelayBoard clean all + $(MAKE) -s -C SerialToLCD clean all + $(MAKE) -s -C TempDataLogger clean all + $(MAKE) -s -C USBtoSerial clean all + $(MAKE) -s -C Webserver clean all + $(MAKE) -s -C XPLAINBridge clean all %: - make -C Magstripe $@ - make -C MissleLauncher $@ + $(MAKE) -s -C AVRISP-MKII $@ + $(MAKE) -s -C Benito $@ + $(MAKE) -s -C HIDReportViewer $@ + $(MAKE) -s -C LEDNotifier $@ + $(MAKE) -s -C Magstripe $@ + $(MAKE) -s -C MediaController $@ + $(MAKE) -s -C MIDIToneGenerator $@ + $(MAKE) -s -C MissileLauncher $@ + $(MAKE) -s -C RelayBoard $@ + $(MAKE) -s -C SerialToLCD $@ + $(MAKE) -s -C TempDataLogger $@ + $(MAKE) -s -C USBtoSerial $@ + $(MAKE) -s -C Webserver $@ + $(MAKE) -s -C XPLAINBridge $@ +