When I attempt to link from a makefile I get the following error:
LINK : fatal error LNK1104: cannot open file 'LIBCMT.lib'.
C:\Users\snmcdonald\Desktop\winMake2\winMake2>nmake "_DEBUG=" /f win2.mk build Microsoft (R) Program Maintenance Utility Version ...
If I want to make a commandline tool using makefile for, say this C program:
# include<stdio.h> int main() { printf("Hello World!"); return 0; }