As a rule, I see that people use them in the opposite order: use make as the main build system and ask Visual Studio to create their files in batch mode.
I don't have for 2008, but w / VisualStudio2005 you can build a solution with a rule something like this
release = "Win32 Debug"
progname.exe : progname.sln
devenv $< /Rebuild /"$(release)/"
(Note: I had to use spaces in this example, since the tab just brings me to the next field.)
source
share