diff options
author | Dean Camera <dean@fourwalledcubicle.com> | 2011-07-14 08:56:41 +0000 |
---|---|---|
committer | Dean Camera <dean@fourwalledcubicle.com> | 2011-07-14 08:56:41 +0000 |
commit | c8e517646538669c290c5566231c8ec2b02f33bc (patch) | |
tree | 279e07086515e135b49d10613f2cfb210f2ccdfa | |
parent | 77a9df36a77d2523dd2bc24fa17f9f04c6c175c5 (diff) | |
download | lufa-c8e517646538669c290c5566231c8ec2b02f33bc.tar.gz lufa-c8e517646538669c290c5566231c8ec2b02f33bc.tar.bz2 lufa-c8e517646538669c290c5566231c8ec2b02f33bc.zip |
Add XMEGA to the LUFA core library makefile's list of architectures, so that the XMEGA files are properly cleaned on request.
-rw-r--r-- | LUFA/makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/LUFA/makefile b/LUFA/makefile index e35ee089f..90259a330 100644 --- a/LUFA/makefile +++ b/LUFA/makefile @@ -12,7 +12,7 @@ # Check to see if the LUFA_PATH variable has not been set (the makefile is not being included from a project makefile) ifeq ($(origin LUFA_PATH), undefined) LUFA_ROOT_PATH = . - ARCH = {AVR8,UC3} + ARCH = {AVR8,UC3,XMEGA} else LUFA_ROOT_PATH = $(LUFA_PATH)/LUFA endif |