|
From: Hans-Bernhard B. <br...@ph...> - 2005-09-03 15:57:39
|
Marko Brandes wrote: > I grabbed the CVS version of gnuplot and tried to compile it on Windows > 2000/XP using MS Visual C++. Using "nmake.exe -f .\config\makefile.nt" > gives an error saying version.obj could not be created. That 'nmake' invocation was done from the wrong place, as evidenced by the wrong number of '.' leading the path of makefile.nt. You're supposed to cd \where\ever\gnuplot\src and then either nmake -f ..\config\makefile.nt or copy ..\config\makefile.nt . REM --- possibly edit the copy now, then: nmake -f makefile.nt I'm pretty sure it says so in the README and/or INSTALL files, too. |