X-Git-Url: http://git.linex4red.de/pub/USBasp.git/blobdiff_plain/359fbfe14d00ab378f85a36664820ea9ba538c3f..c7344c22ac700dacf55a8dc729111dd7781c5fed:/BuildTests/ModuleTest/makefile diff --git a/BuildTests/ModuleTest/makefile b/BuildTests/ModuleTest/makefile index 59700730c..6cdd575b0 100644 --- a/BuildTests/ModuleTest/makefile +++ b/BuildTests/ModuleTest/makefile @@ -1,6 +1,6 @@ # # LUFA Library -# Copyright (C) Dean Camera, 2011. +# Copyright (C) Dean Camera, 2012. # # dean [at] fourwalledcubicle [dot] com # www.lufa-lib.org @@ -37,21 +37,22 @@ end: @echo %.avr8: - $(MAKE) -s -f makefile.avr8 clean - $(MAKE) -s -f makefile.avr8 all MCU=$(@:%.avr8=%) elf + $(MAKE) -s -f makefile.test clean elf ARCH=AVR8 MCU=$(@:%.avr8=%) %.xmega: - $(MAKE) -s -f makefile.xmega clean - $(MAKE) -s -f makefile.xmega all MCU=$(@:%.xmega=%) elf + $(MAKE) -s -f makefile.test clean elf ARCH=XMEGA MCU=$(@:%.xmega=%) %.uc3: - $(MAKE) -s -f makefile.uc3 clean - $(MAKE) -s -f makefile.uc3 all MCU=$(@:%.uc3=%) elf + $(MAKE) -s -f makefile.test clean elf ARCH=UC3 MCU=$(@:%.uc3=%) clean: - $(MAKE) -s -f makefile.avr8 clean - $(MAKE) -s -f makefile.xmega clean - $(MAKE) -s -f makefile.uc3 clean + $(MAKE) -s -f makefile.test clean ARCH=AVR8 + $(MAKE) -s -f makefile.test clean ARCH=XMEGA + $(MAKE) -s -f makefile.test clean ARCH=UC3 %: - \ No newline at end of file + +.PHONY: all arch_avr8 arch_xmega arch_uc3 begin end + +# Include LUFA build script makefiles +include $(LUFA_ROOT_PATH)/LUFA/Build/lufa.core.in