CC=g++

INCLUDE=-I. 
# CPPFLAGS=-g -Wall $(INCLUDE)
CPPFLAGS=-O2 $(INCLUDE)

LIB=-L/usr/local/lib

LDFLAGS=$(LIB)

SRC=RobotGame.cpp main.cpp

OBJS=$(SRC:.cpp=.o)

runme: $(OBJS)
	$(CC) -o $@ $(OBJS) $(LDFLAGS)

depend:
	makedepend -- $(INCLUDE) -- $(SRC) $(BUILDSRC)

clean:
	rm *.o runme core
# DO NOT DELETE

RobotGame.o: RobotGame.h /usr/include/stdio.h /usr/include/features.h
RobotGame.o: /usr/include/sys/cdefs.h /usr/include/gnu/stubs.h
RobotGame.o: /usr/lib/gcc-lib/i386-redhat-linux/2.96/include/stddef.h
RobotGame.o: /usr/include/bits/types.h /usr/include/bits/pthreadtypes.h
RobotGame.o: /usr/include/bits/sched.h /usr/include/libio.h
RobotGame.o: /usr/include/_G_config.h /usr/include/wchar.h
RobotGame.o: /usr/include/bits/wchar.h /usr/include/gconv.h
RobotGame.o: /usr/lib/gcc-lib/i386-redhat-linux/2.96/include/stdarg.h
RobotGame.o: /usr/include/bits/stdio_lim.h /usr/include/sys/types.h
RobotGame.o: /usr/include/time.h /usr/include/endian.h
RobotGame.o: /usr/include/bits/endian.h /usr/include/sys/select.h
RobotGame.o: /usr/include/bits/select.h /usr/include/bits/sigset.h
RobotGame.o: /usr/include/bits/time.h /usr/include/sys/sysmacros.h
RobotGame.o: /usr/include/sys/socket.h /usr/include/sys/uio.h
RobotGame.o: /usr/include/bits/uio.h /usr/include/bits/socket.h
RobotGame.o: /usr/include/limits.h /usr/include/bits/wordsize.h
RobotGame.o: /usr/include/bits/posix1_lim.h /usr/include/bits/local_lim.h
RobotGame.o: /usr/include/linux/limits.h /usr/include/bits/posix2_lim.h
RobotGame.o: /usr/include/bits/sockaddr.h /usr/include/asm/socket.h
RobotGame.o: /usr/include/asm/sockios.h /usr/include/netinet/in.h
RobotGame.o: /usr/include/stdint.h /usr/include/bits/in.h
RobotGame.o: /usr/include/bits/byteswap.h /usr/include/arpa/inet.h
main.o: RobotGame.h
