CC=gcc
CFLAGS=-O

crop:	crop.o 
	$(CC) $(CFLAGS) crop.o -o $@

install:	crop
	cp -pf crop ../../bin

clean:	
	rm -f *.o crop
