Hi all ,
I follow the development guide to make a plugin dissector .I copy all the codes from Example 9.1,Example 9.2 and Example 9.3.
then ,there are some files i need to modify and use:
Makefile.am - This is the UNIX/Linux makefile template
Makefile.common - This contains the file names of this plugin
Makefile.nmake - This contains the Wireshark plugin makefile for Windows
moduleinfo.h - This contains plugin version info
moduleinfo.nmake - This contains DLL version info for Windows
packet-foo.c - This is your dissector source
plugin.rc.in - This contains the DLL resource template for Windows
it said
"You can find a good example for these files in the interlink plugin directory"
But i can't find the interlink plugin directory ,so i copy these files from plugins\m2m ,and replace the m2m->foo,M2M->FOO.
then i use"nmake -f Makefile.nmake distclean" & "nmake -f Makefile.nmake all" in order to establish the .dll file .
Then it failed with :
NMAKE : fatal error U1073: don't know how to make 'packet-foo.obj'
Stop.
So what should i do to deal with it ?
Thanks!