CC = cc -x
OBJ = handle.o

handle.o:	handle.c handle.h point.h

test:	handle.o

clean:
	rm -f $(OBJ) *.ii

clobber:	clean
	rm -f a.out
