ok what i did was earse the obj remake it but now i get this one what is this?
main.cpp:17:53: fatal error: boost/random/uniform_int_distribution.hpp: No such file or directory
compilation terminated.
make: *** [obj/main.o] Error 1
seems like it's missing something how do i fix this now??
This is the boost include path, it does not find the header file for random numbers. You need put something for BOOST_INCLUDE_PATH in your makefile, such as
BOOST_INCLUDE_PATH=/usr/local/boost_1_53 wherever you installed the boost.