2 # nmake file for Wireshark plugin
4 # $Id: Makefile.nmake 27579 2009-03-02 18:57:35Z gerald $
7 include ..\..\config.nmake
8 include moduleinfo.nmake
10 include Makefile.common
12 CFLAGS=/WX /Zi /DHAVE_CONFIG_H /I../.. $(GLIB_CFLAGS) $(ZLIB_CFLAGS) \
13 /I$(PCAP_DIR)\include -D_U_="" $(LOCAL_CFLAGS)
16 $(CC) $(CFLAGS) -Fd.\ -c $<
18 LDFLAGS = $(PLUGIN_LDFLAGS)
20 !IFDEF ENABLE_LIBWIRESHARK
21 LINK_PLUGIN_WITH=..\..\epan\libwireshark.lib $(ZLIB_LIBS)
22 CFLAGS=/DHAVE_WIN32_LIBWIRESHARK_LIB /D_NEED_VAR_IMPORT_ $(CFLAGS)
24 DISSECTOR_OBJECTS = $(DISSECTOR_SRC:.c=.obj)
26 DISSECTOR_SUPPORT_OBJECTS = $(DISSECTOR_SUPPORT_SRC:.c=.obj)
28 OBJECTS = $(DISSECTOR_OBJECTS) $(DISSECTOR_SUPPORT_OBJECTS) plugin.obj
30 RESOURCE=$(PLUGIN_NAME).res
32 all: $(PLUGIN_NAME).dll
34 $(PLUGIN_NAME).rc : moduleinfo.nmake
35 sed -e s/@PLUGIN_NAME@/$(PLUGIN_NAME)/ \
36 -e s/@RC_MODULE_VERSION@/$(RC_MODULE_VERSION)/ \
37 -e s/@RC_VERSION@/$(RC_VERSION)/ \
38 -e s/@MODULE_VERSION@/$(MODULE_VERSION)/ \
39 -e s/@PACKAGE@/$(PACKAGE)/ \
40 -e s/@VERSION@/$(VERSION)/ \
41 -e s/@MSVC_VARIANT@/$(MSVC_VARIANT)/ \
44 $(PLUGIN_NAME).dll $(PLUGIN_NAME).exp $(PLUGIN_NAME).lib : $(OBJECTS) $(LINK_PLUGIN_WITH) $(RESOURCE)
45 link -dll /out:$(PLUGIN_NAME).dll $(LDFLAGS) $(OBJECTS) $(LINK_PLUGIN_WITH) \
46 $(GLIB_LIBS) $(RESOURCE)
49 # Build plugin.c, which contains the plugin version[] string, a
50 # function plugin_register() that calls the register routines for all
51 # protocols, and a function plugin_reg_handoff() that calls the handoff
52 # registration routines for all protocols.
54 # We do this by scanning sources. If that turns out to be too slow,
55 # maybe we could just require every .o file to have an register routine
56 # of a given name (packet-aarp.o -> proto_register_aarp, etc.).
58 # Formatting conventions: The name of the proto_register_* routines an
59 # proto_reg_handoff_* routines must start in column zero, or must be
60 # preceded only by "void " starting in column zero, and must not be
63 # DISSECTOR_SRC is assumed to have all the files that need to be scanned.
65 # For some unknown reason, having a big "for" loop in the Makefile
66 # to scan all the files doesn't work with some "make"s; they seem to
67 # pass only the first few names in the list to the shell, for some
70 # Therefore, we have a script to generate the plugin.c file.
71 # The shell script runs slowly, as multiple greps and seds are run
72 # for each input file; this is especially slow on Windows. Therefore,
73 # if Python is present (as indicated by PYTHON being defined), we run
74 # a faster Python script to do that work instead.
76 # The first argument is the directory in which the source files live.
77 # The second argument is "plugin", to indicate that we should build
78 # a plugin.c file for a plugin.
79 # All subsequent arguments are the files to scan.
82 plugin.c: $(DISSECTOR_SRC) moduleinfo.h ../../tools/make-dissector-reg.py
83 @echo Making plugin.c (using python)
84 @$(PYTHON) "../../tools/make-dissector-reg.py" . plugin $(DISSECTOR_SRC)
86 plugin.c: $(DISSECTOR_SRC) moduleinfo.h ../../tools/make-dissector-reg
87 @echo Making plugin.c (using sh)
88 @$(SH) ../../tools/make-dissector-reg . plugin $(DISSECTOR_SRC)
94 rm -f $(OBJECTS) $(RESOURCE) plugin.c *.pdb \
95 $(PLUGIN_NAME).dll $(PLUGIN_NAME).dll.manifest $(PLUGIN_NAME).lib \
96 $(PLUGIN_NAME).exp $(PLUGIN_NAME).rc
100 maintainer-clean: distclean
104 # $(PERL) ../../tools/checkAPIs.pl -g abort -g termoutput $(DISSECTOR_SRC)