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