开发者

Convert a sub-make file to make file?

开发者 https://www.devze.com 2023-01-28 15:15 出处:网络
I need to convert sub-make files into make-files, namely Windows C# sub-make files. The sub-make files look like:

I need to convert sub-make files into make-files, namely Windows C# sub-make files.

The sub-make files look like:

include Windows.def 

solution = someSolution.sln
开发者_StackOverflow中文版

Can I just save the sub-make file as ".make?" I apologize if I'm vague, but I've googled the subject and don't have much information.

Thanks


I assume you are talking about "nmake" makefiles? I imagine you must first modify it to use an exclamation point preceding the include statement:

!include Windows.def
0

精彩评论

暂无评论...
验证码 换一张
取 消