[comp.lang.c] MSC 4.0 make question

wjb@moss.ATT.COM (01/15/88)

I am trying to learn how to write makefiles with microsoft C.  I
have a description that looks like

prog.o:	include1.h include2.h
	msc prog.c,,,;

When I invoke the make with this makefile, it gets to invoking the
compiler, I get the header from the compiler, and then it bombs
with the error message about the fatal command line error.  The
documentation says that the error means there's probably something
wrong with the .exe file it was trying to execute (c1.exe).  I
don't think anything is wrong with my c1.exe because 1) I get the
same result with the master compiler disk, and 2) when I invoke the
compiler by hand, exactly as in the makefile, the compiler runs
fine.

Has anybody else ever seen this? Can you tell me what I'm doing wrong?
Thanks for the help,
				--Bill