-Add the compiler version to the plugin resource
[obnox/wireshark/wip.git] / plugins / pcli / Makefile.nmake
1 # Makefile.nmake
2 # nmake file for Wireshark plugin
3 #
4 # $Id$
5 #
6
7 include ..\..\config.nmake
8 include moduleinfo.nmake
9
10 include Makefile.common
11
12 CFLAGS=/DHAVE_CONFIG_H /I../.. /I../../wiretap $(GLIB_CFLAGS) \
13         /I$(PCAP_DIR)\include -D_U_="" $(LOCAL_CFLAGS)
14
15 LDFLAGS = /NOLOGO /INCREMENTAL:no /MACHINE:I386 $(LOCAL_LDFLAGS)
16
17 !IFDEF ENABLE_LIBWIRESHARK
18 LINK_PLUGIN_WITH=..\..\epan\libwireshark.lib
19 CFLAGS=/DHAVE_WIN32_LIBWIRESHARK_LIB /D_NEED_VAR_IMPORT_ $(CFLAGS)
20
21 DISSECTOR_OBJECTS = $(DISSECTOR_SRC:.c=.obj)
22
23 DISSECTOR_SUPPORT_OBJECTS = $(DISSECTOR_SUPPORT_SRC:.c=.obj)
24
25 OBJECTS = $(DISSECTOR_OBJECTS) $(DISSECTOR_SUPPORT_OBJECTS) plugin.obj
26
27 RESOURCE=$(PLUGIN_NAME).res
28
29 all: $(PLUGIN_NAME).dll
30
31 $(PLUGIN_NAME).rc : moduleinfo.nmake
32         sed -e s/@PLUGIN_NAME@/$(PLUGIN_NAME)/ \
33         -e s/@RC_MODULE_VERSION@/$(RC_MODULE_VERSION)/ \
34         -e s/@RC_VERSION@/$(RC_VERSION)/ \
35         -e s/@MODULE_VERSION@/$(MODULE_VERSION)/ \
36         -e s/@PACKAGE@/$(PACKAGE)/ \
37         -e s/@VERSION@/$(VERSION)/ \
38         -e s/@MSVC_VARIANT@/$(MSVC_VARIANT)/ \
39         < plugin.rc.in > $@
40
41 $(PLUGIN_NAME).dll $(PLUGIN_NAME).exp $(PLUGIN_NAME).lib : $(OBJECTS) $(LINK_PLUGIN_WITH) $(RESOURCE)
42         link -dll /out:$(PLUGIN_NAME).dll $(LDFLAGS) $(OBJECTS) $(LINK_PLUGIN_WITH) \
43         $(GLIB_LIBS) $(RESOURCE)
44 #
45 # Build plugin.c, which contains the plugin version[] string, a
46 # function plugin_register() that calls the register routines for all
47 # protocols, and a function plugin_reg_handoff() that calls the handoff
48 # registration routines for all protocols.
49 #
50 # We do this by scanning sources.  If that turns out to be too slow,
51 # maybe we could just require every .o file to have an register routine
52 # of a given name (packet-aarp.o -> proto_register_aarp, etc.).
53 #
54 # Formatting conventions:  The name of the proto_register_* routines an
55 # proto_reg_handoff_* routines must start in column zero, or must be
56 # preceded only by "void " starting in column zero, and must not be
57 # inside #if.
58 #
59 # DISSECTOR_SRC is assumed to have all the files that need to be scanned.
60 #
61 # For some unknown reason, having a big "for" loop in the Makefile
62 # to scan all the files doesn't work with some "make"s; they seem to
63 # pass only the first few names in the list to the shell, for some
64 # reason.
65 #
66 # Therefore, we have a script to generate the plugin.c file.
67 # The shell script runs slowly, as multiple greps and seds are run
68 # for each input file; this is especially slow on Windows.  Therefore,
69 # if Python is present (as indicated by PYTHON being defined), we run
70 # a faster Python script to do that work instead.
71 #
72 # The first argument is the directory in which the source files live.
73 # The second argument is "plugin", to indicate that we should build
74 # a plugin.c file for a plugin.
75 # All subsequent arguments are the files to scan.
76 #
77 plugin.c: $(DISSECTOR_SRC)
78 !IFDEF PYTHON
79         @echo Making plugin.c (using python)
80         @$(PYTHON) "../../tools/make-dissector-reg.py" . plugin $(DISSECTOR_SRC)
81 !ELSE
82         @echo Making plugin.c (using sh)
83         @$(SH) ../../tools/make-dissector-reg . plugin $(DISSECTOR_SRC)
84 !ENDIF
85
86 !ENDIF
87
88 clean:
89         rm -f $(OBJECTS) $(RESOURCE) plugin.c *.pdb \
90                 $(PLUGIN_NAME).dll $(PLUGIN_NAME).dll.manifest $(PLUGIN_NAME).lib \
91         $(PLUGIN_NAME).exp $(PLUGIN_NAME).rc 
92
93 distclean: clean
94
95 maintainer-clean: distclean