CC=gcc

all: robo

robo: *.java
	javac *.java

clean:
	rm -f *.class

distclean:
	rm -f CPLANE_LOG OPLANE_LOG SENSOR_LOG
