Skip to content
Snippets Groups Projects
MAKEALL 17.1 KiB
Newer Older
  • Learn to ignore specific revisions
  • Wolfgang Denk's avatar
    Wolfgang Denk committed
    	case "$arg" in
    
    	arm|SA|ARM7|ARM9|ARM10|ARM11|ARM_CORTEX_A8|at91|ixp|pxa \
    
    	|avr32 \
    	|blackfin \
    	|coldfire \
    	|microblaze \
    	|mips|mips_el \
    	|nios|nios2 \
    	|ppc|5xx|5xxx|512x|8xx|8220|824x|8260|83xx|85xx|86xx|4xx|7xx|74xx|TSEC \
    
    	|sh|sh2|sh3|sh4 \
    
    	|sparc \
    	|x86|I486 \
    
    Wolfgang Denk's avatar
    Wolfgang Denk committed
    			for target in `eval echo '$LIST_'${arg}`
    			do
    				build_target ${target}
    			done
    			;;
    	*)		build_target ${arg}
    			;;
    	esac
    done