include ../common/Makefile.inc

all: hello.$(ARCH)

hello.$(ARCH):	hello.$(ARCH).o
		ld -o hello.$(ARCH) hello.$(ARCH).o

hello.$(ARCH).o:	hello.$(ARCH).s
		as -o hello.$(ARCH).o hello.$(ARCH).s
		

clean:		
		rm -f *~ *.o
		rm -rf m5out		
