CC=gcc
# CFLAGS=-Wall -O2 -DDEBUG
CFLAGS=-Wall -O2

robot: main.o
	$(CC) -o robot main.o

clean:
	rm -f *.o robot
