include ../common/Makefile.inc

all: time.$(ARCH)

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

time.$(ARCH).o:	time.$(ARCH).s ../common/library.$(ARCH)
		as -o time.$(ARCH).o time.$(ARCH).s
		

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