CFLAGS=-O

all:	tar

cp:	all
	cp tar /bin
	rm -f tar *.o

cmp:	all
	cmp tar /bin/tar
	rm -f tar *.o

tar:	tar.c
	cc -i -s -O tar.c -o tar

