all:	mt

mt:	mt.c
	cc -s -N -O2 -o mt mt.c

install:	mt
	cp mt /usr/local/bin/.
	strip /usr/local/bin/mt

clean:
	rm -f mt *.o *~
