all: copt
	echo All up to date.

copt: copt.c
	cc -g -o copt copt.c

clean:
	rm -f copt *~
