e6efe80b887142f194c0df8e8b7f38361e91c19b
[obnox/wireshark/wip.git] / plugins / gryphon / 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         < plugin.rc.in > $@
39
40 $(PLUGIN_NAME).dll $(PLUGIN_NAME).exp $(PLUGIN_NAME).lib : $(OBJECTS) $(LINK_PLUGIN_WITH) $(RESOURCE)
41         link -dll /out:$(PLUGIN_NAME).dll $(LDFLAGS) $(OBJECTS) $(LINK_PLUGIN_WITH) \
42         $(GLIB_LIBS) $(RESOURCE)
43 #
44 # Build plugin.c, which contains the plugin version[] string, a
45 # function plugin_register() that calls the register routines for all
46 # protocols, and a function plugin_reg_handoff() that calls the handoff
47 # registration routines for all protocols.
48 #
49 # We do this by scanning sources.  If that turns out to be too slow,
50 # maybe we could just require every .o file to have an register routine
51 # of a given name (packet-aarp.o -> proto_register_aarp, etc.).
52 #
53 # Formatting conventions:  The name of the proto_register_* routines an
54 # proto_reg_handoff_* routines must start in column zero, or must be
55 # preceded only by "void " starting in column zero, and must not be
56 # inside #if.
57 #
58 # DISSECTOR_SRC is assumed to have all the files that need to be scanned.
59 #
60 # For some unknown reason, having a big "for" loop in the Makefile
61 # to scan all the files doesn't work with some "make"s; they seem to
62 # pass only the first few names in the list to the shell, for some
63 # reason.
64 #
65 # Therefore, we have a script to generate the plugin.c file.
66 # The shell script runs slowly, as multiple greps and seds are run
67 # for each input file; this is especially slow on Windows.  Therefore,
68 # if Python is present (as indicated by PYTHON being defined), we run
69 # a faster Python script to do that work instead.
70 #
71 # The first argument is the directory in which the source files live.
72 # The second argument is "plugin", to indicate that we should build
73 # a plugin.c file for a plugin.
74 # All subsequent arguments are the files to scan.
75 #
76 plugin.c: $(DISSECTOR_SRC)
77 !IFDEF PYTHON
78         @echo Making plugin.c (using python)
79         @$(PYTHON) "../../tools/make-dissector-reg.py" . plugin $(DISSECTOR_SRC)
80 !ELSE
81         @echo Making plugin.c (using sh)
82         @$(SH) ../../tools/make-dissector-reg . plugin $(DISSECTOR_SRC)
83 !ENDIF
84
85 !ENDIF
86
87 clean:
88         rm -f $(OBJECTS) $(RESOURCE) plugin.c *.pdb \
89                 $(PLUGIN_NAME).dll $(PLUGIN_NAME).dll.manifest $(PLUGIN_NAME).lib \
90         $(PLUGIN_NAME).exp $(PLUGIN_NAME).rc 
91
92 distclean: clean
93
94 maintainer-clean: distclean