aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/Makefile.nmake
AgeCommit message (Collapse)AuthorFilesLines
2000-11-12Add a Makefile.nmake for the MGCP plugin, and updateGuy Harris1-2/+9
"plugins/Makefile.nmake" to build that plugin. Add to the table of routines callable from plugins "old_dissector_add()", "old_dissect_data()", and "proto_is_protocol_enabled()", so that the Gryphon dissector can build on Windows. Move the includes of "plugins/plugin_api.h" and "moduleinfo.h" before all the other includes, except for "config.h", in "plugin-mgcp.c", to match what the Gryphon dissector does; "plugins_api.h" must be included before any of the routines whose names it #defines in order for the plugin to build on Windows. (It still doesn't build on Windows, as still more routines need to be added to the table of routines callable from plugins, but tomorrow is another day. Making libethereal a DLL may obviate the need for that table, *if* all the routines called from a plugin are in libethereal, as I think routines in a DLL, even a run-time-loaded DLL, can call routines from another DLL as long as those routines are exported from the other DLL.) svn path=/trunk/; revision=2622
2000-10-11Fix it to build on Windows.Guy Harris1-2/+2
svn path=/trunk/; revision=2488
2000-05-20Use "rm -f", not "rm", to remove "plugin_api.obj", so that ifGuy Harris1-2/+2
"plugin_api.obj" doesn't exist, it just drives on rather than giving an error. svn path=/trunk/; revision=1990
2000-04-29Graham Bloice's changes to, on Win32 using Microsoft's "nmake":Guy Harris1-1/+2
build "register.c" in the top-level Makefile; set path in "config.nmake" to include the Cygwin directory for tools - those tools are needed to build "register.c"; remove constructed source files, and some additional object files, when doing "nmake clean". svn path=/trunk/; revision=1896
2000-04-12Build tethereal and editcap on Win32.Gilbert Ramirez1-0/+4
Add RCS ID tags to Makefile.nmake's. svn path=/trunk/; revision=1836
2000-04-04Add "clean" rules in subdirectories, and run subdirectory "nmake -fGuy Harris1-0/+4
Makefile.nmake clean" when "nmake -f Makefile.nmake clean" is done in the top-level directory, so that "nmake -f Makefile.nmake clean" cleans everything up. svn path=/trunk/; revision=1792
2000-02-09Integrate Ed Meaney's <emeaney@altiga.com> changes for using libpcapGilbert Ramirez1-3/+4
from WinDump with Ethereal. We now have packet capturing on Win32. :) svn path=/trunk/; revision=1612
2000-02-09Update Makefiles for win32. Move local configuration to config.nmake,Gilbert Ramirez1-0/+17
have top-level Makefile.nmake call Makefile.nmake's in subdirectories. Build plugins, and build generated source (lex, yacc). The only thing we can't build is register.c; I need to re-work the top-level Makefile.nmake because it lists object files, not C files, which make-reg-dotc needs. svn path=/trunk/; revision=1608