AVR support

This commit is contained in:
Anthony Green
2009-10-04 23:53:17 -04:00
parent 5cbe2058c1
commit 2340e7a777
14 changed files with 799 additions and 57 deletions

View File

@@ -49,6 +49,10 @@ case "$host" in
TARGET=ARM; TARGETDIR=arm
;;
avr32-*-*)
TARGET=AVR32; TARGETDIR=avr32
;;
amd64-*-freebsd*)
TARGET=X86_64; TARGETDIR=x86
;;
@@ -179,6 +183,7 @@ AM_CONDITIONAL(POWERPC_AIX, test x$TARGET = xPOWERPC_AIX)
AM_CONDITIONAL(POWERPC_DARWIN, test x$TARGET = xPOWERPC_DARWIN)
AM_CONDITIONAL(POWERPC_FREEBSD, test x$TARGET = xPOWERPC_FREEBSD)
AM_CONDITIONAL(ARM, test x$TARGET = xARM)
AM_CONDITIONAL(AVR32, test x$TARGET = xAVR32)
AM_CONDITIONAL(LIBFFI_CRIS, test x$TARGET = xLIBFFI_CRIS)
AM_CONDITIONAL(FRV, test x$TARGET = xFRV)
AM_CONDITIONAL(S390, test x$TARGET = xS390)