all:	hello

hello.o:
	mipsel-linux-as -G 0 hello.S -o hello.o

hello:	hello.o
	mipsel-linux-ld hello.o -o hello
