Click here to Skip to main content
15,891,431 members
Please Sign up or sign in to vote.
3.00/5 (1 vote)
See more:
I have given source path where I included xyz.c .Then I tried to build
from command prompt with the command build -ceZ. I am getting this error.

NMAKE : fatal error U1073: don't know how to make xyz.obj
Posted
Updated 30-May-10 22:42pm
v2

1 solution

I am not familiar with the build command but the usual problem in a case like this is that the build system has no rule showing how to compile the file. You need to set a rule in your make (assuming this uses one) or other parameter file to tell the build system what statements to generate in order to compile a .c file into .obj.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900