http://bugs.winehq.org/show_bug.cgi?id=8849
Summary: nmake doesn't work as expected. Product: Wine Version: 0.9.34. Platform: Other OS/Version: other Status: UNCONFIRMED Severity: normal Priority: P2 Component: wine-msvcrt AssignedTo: wine-bugs@winehq.org ReportedBy: w.goesgens@outgesourced.org
download for example http://download.microsoft.com/download/vc15/Patch/1.52/W95/EN-US/Nmake15.exe or use one from your visual studio.
Create two makefiles test1.mak
!include "test2.mak"
test2.mak
echo "santoeuh"
Calling this like that will result in an error in wine, but it works flawlessly under windows:
c:\src>nmake -f test1.mak
Microsoft (R) Program Maintenance Utility Version 1.50 Copyright (c) Microsoft Corp 1988-94. All rights reserved.
fixme:msvcrt:MSVCRT__fsopen :(test1.mak,rt,32),ignoring share mode! test1.mak(1) : fatal error U1017: unknown directive '!include "test2.mak"' Stop. c:\src>