

all:
	#### Compiling ARM sample ...
	cd arm; make; cd ..
	#### Compiling Cortex-M3 sample ...
	cd cortex_m3; make; cd ..
	#### Compiling MicroBlaze sample ...
	cd microblaze; make; cd ..
	#### Compiling SH2 sample ...
	cd sh2; make; cd ..
	#### Compiling SH4A sample ...
	cd sh4a; make; cd ..
	#### Compiling V850 sample ...
	cd v850; make; cd ..
	#### Compiling MIPS sample ...
	cd mips; make; cd ..
	#### Compiling PowerPC sample ...
	cd powerpc; make; cd ..
clean: 
	cd arm; make clean; cd ..
	cd cortex_m3; make clean; cd ..
	cd microblaze; make clean; cd ..
	cd sh2; make clean; cd ..
	cd sh4a; make clean; cd ..
	cd v850; make clean; cd ..
	cd mips; make clean; cd ..
	cd powerpc; make clean; cd ..
