I'm trying to compile Angband 3.1.0 using Visual Studio 2008 and Makefile.nmake
It seems that there are a lot of .c files in subdirectories with lines like ...
#include "angband.h"
that all need to be changed to
#include "../angband.h"
in order for it to compile. A quick look at the SVN version shows that the same lines are present (without any ../ ). Does this mean the Makefile.nmake needs to be changed or is there some command line setting or something I'm missing?
It seems that there are a lot of .c files in subdirectories with lines like ...
#include "angband.h"
that all need to be changed to
#include "../angband.h"
in order for it to compile. A quick look at the SVN version shows that the same lines are present (without any ../ ). Does this mean the Makefile.nmake needs to be changed or is there some command line setting or something I'm missing?
Comment