This is a static archive of our old Q&A Site. Please post any new questions and answers at ask.wireshark.org.

Where has makefile.nmake gone?

0

Hi,

With the current version 2.2.5, I do not see makefile.nmake. Older versions still has makefile.nmake.

I'm adding something similar to:

randpkt.exe : $(randpkt_OBJECTS) @echo Linking [email protected] $(LINK) @<< /OUT:randpkt.exe $(conflags) $(conlibsdll) $(LDFLAGS) /SUBSYSTEM:console $(randpkt_LIBS) $(randpkt_OBJECTS) << !IFDEF MANIFEST_INFO_REQUIRED mt.exe -nologo -manifest "randpkt.exe.manifest" -outputresource:randpkt.exe;1 !ENDIF

asked 04 Apr '17, 20:35

James%20Adriano's gravatar image

James Adriano
11114
accept rate: 0%


One Answer:

3

Windows builds have moved to CMake and nmake isn't supported. Please read and follow the Developers Guide instructions as shown here.

answered 04 Apr '17, 23:39

grahamb's gravatar image

grahamb ♦
19.8k330206
accept rate: 22%

Ok, thanks for the information!

(05 Apr '17, 00:43) James Adriano