#master makefile


all: ppc mips x86 CSP clean

ppc:
	make -f Makefileppc all
	make -f Makefileppc ppc

mips:
	make -f Makefilemips all
	make -f Makefilemips mips

x86:
	make -f Makefilex86 x86

CSP:
	make -f Makefilecsp x86

clean:
	rm *.o
