include ../common/Makefile.inc

all: truncate.$(ARCH)

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

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

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