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