How to compile project by makefile ?
I downloaded a VC package. There is not project file, but only a makefile.
Could you tell me how to compile this makefile?
Thanks
Charles Shao^_^
William DePalo [MVP VC++] - 24 Mar 2005 04:28 GMT
> How to compile project by makefile ?
nmake -f Makefile
After you do that, type
nmake /?
for more options.
Regards,
Will