various code cleanup
[obnox/wireshark/wip.git] / Makefile.nmake
1 ## Makefile for building wireshark.exe with Microsoft C and nmake
2 ## Use: $(MAKE) /$(MAKEFLAGS) -f makefile.nmake
3 #
4 # $Id$
5
6 include config.nmake
7 include <win32.mak>
8
9 ############### no need to modify below this line #########
10
11 CC = cl
12 LINK= link
13
14 LDFLAGS = /NOLOGO /INCREMENTAL:no /MACHINE:I386 $(LOCAL_LDFLAGS)
15
16 CFLAGS=-WX -DHAVE_CONFIG_H $(LOCAL_CFLAGS) $(GLIB_CFLAGS) /I. /Iwiretap \
17         $(ZLIB_CFLAGS) /I$(PCAP_DIR)\include \
18         $(AIRPCAP_CFLAGS) \
19         $(ADNS_CFLAGS) $(PCRE_CFLAGS) $(GNUTLS_CFLAGS) $(LUA_CFLAGS) $(SMI_CFLAGS) \
20         -D_U_="" -D_NEED_VAR_IMPORT_
21
22 CVARSDLL=-DWIN32 -DNULL=0 -D_MT -D_DLL
23
24 .c.obj::
25         $(CC) $(CVARSDLL) $(CFLAGS) -Fd.\ -c $<
26
27 PLATFORM_SRC = capture-wpcap.c capture_wpcap_packet.c
28
29 include Makefile.common
30
31 wireshark_OBJECTS = $(wireshark_SOURCES:.c=.obj)
32 tshark_OBJECTS = $(tshark_SOURCES:.c=.obj)
33 rawshark_OBJECTS = $(rawshark_SOURCES:.c=.obj)
34 dftest_OBJECTS = $(dftest_SOURCES:.c=.obj)
35 dumpcap_OBJECTS = $(dumpcap_SOURCES:.c=.obj)
36 randpkt_OBJECTS = $(randpkt_SOURCES:.c=.obj)
37
38 EXTRA_OBJECTS = \
39         getopt.obj      \
40         inet_ntop.obj   \
41         inet_pton.obj   \
42         mkstemp.obj     \
43         strptime.obj
44
45 wireshark_LIBS= wiretap\wiretap-$(WTAP_VERSION).lib \
46         wsock32.lib user32.lib shell32.lib comctl32.lib \
47         $(HHC_LIBS) \
48 !IFDEF ENABLE_LIBWIRESHARK
49         epan\libwireshark.lib \
50 !ELSE
51         epan\dissectors\dissectors.lib \
52         epan\wireshark.lib \
53         epan\crypt\airpdcap.lib \
54         epan\dfilter\dfilter.lib \
55         epan\ftypes\ftypes.lib \
56         $(ADNS_LIBS) \
57         $(PCRE_LIBS) \
58         $(ZLIB_LIBS) \
59         $(GNUTLS_LIBS)
60 !ENDIF
61
62 tshark_LIBS= wiretap\wiretap-$(WTAP_VERSION).lib \
63         wsock32.lib user32.lib \
64         $(GLIB_LIBS) \
65 !IFDEF ENABLE_LIBWIRESHARK
66         epan\libwireshark.lib \
67 !ELSE
68         epan\dissectors\dissectors.lib \
69         epan\wireshark.lib \
70         epan\crypt\airpdcap.lib \
71         epan\dfilter\dfilter.lib \
72         epan\ftypes\ftypes.lib \
73         $(ADNS_LIBS) \
74         $(PCRE_LIBS) \
75         $(ZLIB_LIBS) \
76         $(GNUTLS_LIBS)
77 !ENDIF
78
79 rawshark_LIBS= wiretap\wiretap-$(WTAP_VERSION).lib \
80         wsock32.lib user32.lib \
81         $(GLIB_LIBS) \
82 !IFDEF ENABLE_LIBWIRESHARK
83         epan\libwireshark.lib \
84 !ELSE
85         epan\dissectors\dissectors.lib \
86         epan\wireshark.lib \
87         epan\crypt\airpdcap.lib \
88         epan\dfilter\dfilter.lib \
89         epan\ftypes\ftypes.lib \
90         $(ADNS_LIBS) \
91         $(PCRE_LIBS) \
92         $(ZLIB_LIBS) \
93         $(GNUTLS_LIBS)
94 !ENDIF
95
96 capinfos_LIBS= wiretap\wiretap-$(WTAP_VERSION).lib \
97         wsock32.lib user32.lib shell32.lib \
98         $(GLIB_LIBS)
99
100 editcap_LIBS= wiretap\wiretap-$(WTAP_VERSION).lib \
101         wsock32.lib user32.lib shell32.lib \
102         $(GLIB_LIBS)
103
104 mergecap_LIBS= wiretap\wiretap-$(WTAP_VERSION).lib \
105         wsock32.lib user32.lib \
106         $(GLIB_LIBS)
107
108 text2pcap_LIBS= wiretap\wiretap-$(WTAP_VERSION).lib \
109         wsock32.lib user32.lib \
110         $(GLIB_LIBS)
111
112 dumpcap_LIBS= wiretap\wiretap-$(WTAP_VERSION).lib \
113         wsock32.lib user32.lib \
114         $(GLIB_LIBS)
115
116 dftest_LIBS=  wiretap\wiretap-$(WTAP_VERSION).lib \
117         wsock32.lib user32.lib \
118         $(GLIB_LIBS) \
119 !IFDEF ENABLE_LIBWIRESHARK
120         epan\libwireshark.lib \
121 !ELSE
122         epan\dissectors\dissectors.lib \
123         epan\wireshark.lib \
124         epan\dfilter\dfilter.lib epan\ftypes\ftypes.lib \
125         $(ADNS_LIBS) \
126         $(PCRE_LIBS) \
127         $(ZLIB_LIBS) \
128         $(SMI_LIBS) \
129         $(GNUTLS_LIBS)
130 !ENDIF
131
132 randpkt_LIBS= wiretap\wiretap-$(WTAP_VERSION).lib \
133         user32.lib \
134         $(GLIB_LIBS)
135
136 EXECUTABLES=wireshark.exe tshark.exe rawshark.exe \
137         capinfos.exe editcap.exe mergecap.exe text2pcap.exe randpkt.exe dumpcap.exe
138
139 RESOURCES=image\wireshark.res image\libwireshark.res image\tshark.res \
140         image\capinfos.res image\editcap.res image\mergecap.res \
141         image\text2pcap.res image\wiretap.res image\dumpcap.res \
142         image\rawshark.res
143
144 LIBS_CHECK=_libs_check_
145
146 all: $(LIBS_CHECK) config.h tools image codecs $(ZLIB_DLL) wiretap epan $(EXECUTABLES) $(RESOURCES) doc install-all
147
148 packaging: all
149         cd packaging
150         cd nsis
151         $(MAKE) /$(MAKEFLAGS) -f makefile.nmake
152         cd ..
153         cd ..
154
155 packaging_u3: all
156         cd packaging
157         cd u3
158         cd win32
159         $(MAKE) /$(MAKEFLAGS) -f makefile.nmake
160         cd ..
161         cd ..
162         cd ..
163
164 packaging_papps: all
165         cd packaging
166         cd portableapps
167         cd win32
168         $(MAKE) /$(MAKEFLAGS) -f makefile.nmake
169         cd ..
170         cd ..
171         cd ..
172
173 # use (info-)zip from cygwin to pack things
174 packaging_zip: all
175 !IFDEF MSVCR_DLL
176         xcopy "$(MSVCR_DLL)" $(INSTALL_DIR)
177 !ENDIF
178 !IFDEF VCREDIST_EXE
179         @echo Including vcredist_x86.exe -- your recipient may need to run it!
180         xcopy "$(VCREDIST_EXE)" $(INSTALL_DIR)
181 !ENDIF
182         rm -f wireshark.zip
183         zip -r -9 wireshark.zip $(INSTALL_DIR)/
184
185
186 $(RESOURCES): image
187
188 wiretap\wiretap-$(WTAP_VERSION).lib: image $(ZLIB_DLL) wiretap
189
190 wireshark.exe   : $(LIBS_CHECK) config.h svnversion.h $(wireshark_OBJECTS) getopt.obj inet_ntop.obj inet_pton.obj codecs epan gtk image\wireshark.res wiretap\wiretap-$(WTAP_VERSION).lib codecs\codecs.lib gtk\libui.lib plugins
191         @echo Linking $@
192         $(LINK) @<<
193                 /OUT:wireshark.exe $(guiflags) $(guilibsdll) $(LDFLAGS) /LARGEADDRESSAWARE /SUBSYSTEM:windows $(wireshark_LIBS) getopt.obj inet_ntop.obj inet_pton.obj $(GTK_LIBS) codecs\codecs.lib gtk\libui.lib $(wireshark_OBJECTS) image\wireshark.res
194 <<
195 !IF "$(MSVC_VARIANT)" == "MSVC2005" || "$(MSVC_VARIANT)" == "MSVC2005EE" || "$(MSVC_VARIANT)" == "DOTNET20"
196         mt.exe -nologo -manifest "wireshark.exe.manifest" -outputresource:wireshark.exe;1
197 !ENDIF
198
199 tshark.exe      : $(LIBS_CHECK) config.h svnversion.h $(tshark_OBJECTS) getopt.obj inet_ntop.obj epan image\tshark.res wiretap\wiretap-$(WTAP_VERSION).lib plugins
200         @echo Linking $@
201         $(LINK) @<<
202                 /OUT:tshark.exe $(conflags) $(conlibsdll) $(LDFLAGS) /LARGEADDRESSAWARE /SUBSYSTEM:console $(tshark_LIBS) $(tshark_OBJECTS) getopt.obj inet_ntop.obj image\tshark.res
203 <<
204 !IF "$(MSVC_VARIANT)" == "MSVC2005" || "$(MSVC_VARIANT)" == "MSVC2005EE" || "$(MSVC_VARIANT)" == "DOTNET20"
205         mt.exe -nologo -manifest "tshark.exe.manifest" -outputresource:tshark.exe;1
206 !ENDIF
207
208 rawshark.exe    : $(LIBS_CHECK) config.h svnversion.h $(rawshark_OBJECTS) getopt.obj inet_ntop.obj epan image\rawshark.res wiretap\wiretap-$(WTAP_VERSION).lib plugins
209         @echo Linking $@
210         $(LINK) @<<
211                 /OUT:rawshark.exe $(conflags) $(conlibsdll) $(LDFLAGS) /LARGEADDRESSAWARE /SUBSYSTEM:console $(rawshark_LIBS) $(rawshark_OBJECTS) getopt.obj inet_ntop.obj image\rawshark.res
212 <<
213
214 capinfos.exe    : $(LIBS_CHECK) config.h capinfos.obj getopt.obj epan/unicode-utils.obj epan/plugins.obj epan/report_err.obj epan/privileges.obj epan/filesystem.obj wiretap\wiretap-$(WTAP_VERSION).lib image\capinfos.res
215         @echo Linking $@
216         $(LINK) @<<
217                 /OUT:capinfos.exe $(conflags) $(conlibsdll) $(LDFLAGS) /SUBSYSTEM:console capinfos.obj getopt.obj epan/unicode-utils.obj epan/plugins.obj epan/report_err.obj epan/privileges.obj epan/filesystem.obj $(capinfos_LIBS) image\capinfos.res
218 <<
219 !IF "$(MSVC_VARIANT)" == "MSVC2005" || "$(MSVC_VARIANT)" == "MSVC2005EE" || "$(MSVC_VARIANT)" == "DOTNET20"
220         mt.exe -nologo -manifest "capinfos.exe.manifest" -outputresource:capinfos.exe;1
221 !ENDIF
222
223 editcap.exe     : $(LIBS_CHECK) config.h editcap.obj getopt.obj strptime.obj epan\crypt\crypt-md5.obj epan/unicode-utils.obj epan/plugins.obj epan/report_err.obj epan/privileges.obj epan/filesystem.obj wiretap\wiretap-$(WTAP_VERSION).lib image\editcap.res
224         @echo Linking $@
225         $(LINK) @<<
226                 /OUT:editcap.exe $(conflags) $(conlibsdll) $(LDFLAGS) /SUBSYSTEM:console editcap.obj getopt.obj strptime.obj epan/unicode-utils.obj epan\crypt\crypt-md5.obj epan/plugins.obj epan/report_err.obj epan/privileges.obj epan/filesystem.obj $(editcap_LIBS) image\editcap.res
227 <<
228 !IF "$(MSVC_VARIANT)" == "MSVC2005" || "$(MSVC_VARIANT)" == "MSVC2005EE" || "$(MSVC_VARIANT)" == "DOTNET20"
229         mt.exe -nologo -manifest "editcap.exe.manifest" -outputresource:editcap.exe;1
230 !ENDIF
231
232 mergecap.exe    : $(LIBS_CHECK)  config.h svnversion.h mergecap.obj merge.obj getopt.obj wiretap\wiretap-$(WTAP_VERSION).lib image\mergecap.res
233         @echo Linking $@
234         $(LINK) @<<
235                 /OUT:mergecap.exe $(conflags) $(conlibsdll) $(LDFLAGS) /SUBSYSTEM:console mergecap.obj merge.obj getopt.obj $(mergecap_LIBS) image\mergecap.res
236 <<
237 !IF "$(MSVC_VARIANT)" == "MSVC2005" || "$(MSVC_VARIANT)" == "MSVC2005EE" || "$(MSVC_VARIANT)" == "DOTNET20"
238         mt.exe -nologo -manifest "mergecap.exe.manifest" -outputresource:mergecap.exe;1
239 !ENDIF
240
241 text2pcap.exe   : $(LIBS_CHECK) config.h text2pcap.obj text2pcap-scanner.obj getopt.obj wiretap\wiretap-$(WTAP_VERSION).lib strptime.obj image\text2pcap.res
242         @echo Linking $@
243         $(LINK) @<<
244                 /OUT:text2pcap.exe $(conflags) $(conlibsdll) $(LDFLAGS) /SUBSYSTEM:console text2pcap.obj text2pcap-scanner.obj getopt.obj $(text2pcap_LIBS) strptime.obj image\text2pcap.res
245 <<
246 !IF "$(MSVC_VARIANT)" == "MSVC2005" || "$(MSVC_VARIANT)" == "MSVC2005EE" || "$(MSVC_VARIANT)" == "DOTNET20"
247         mt.exe -nologo -manifest "text2pcap.exe.manifest" -outputresource:text2pcap.exe;1
248 !ENDIF
249
250 dftest.exe      : $(dftest_OBJECTS) epan
251         @echo Linking $@
252         $(LINK) @<<
253                 /OUT:dftest.exe $(conflags) $(conlibsdll) $(LDFLAGS) /SUBSYSTEM:console $(dftest_LIBS) $(dftest_OBJECTS)
254 <<
255 !IF "$(MSVC_VARIANT)" == "MSVC2005" || "$(MSVC_VARIANT)" == "MSVC2005EE" || "$(MSVC_VARIANT)" == "DOTNET20"
256         mt.exe -nologo -manifest "dftest.exe.manifest" -outputresource:dftest.exe;1
257 !ENDIF
258
259 randpkt.exe     : $(randpkt_OBJECTS) getopt.obj
260         @echo Linking $@
261         $(LINK) @<<
262                 /OUT:randpkt.exe $(conflags) $(conlibsdll) $(LDFLAGS) /SUBSYSTEM:console $(randpkt_LIBS) $(randpkt_OBJECTS) getopt.obj
263 <<
264 !IF "$(MSVC_VARIANT)" == "MSVC2005" || "$(MSVC_VARIANT)" == "MSVC2005EE" || "$(MSVC_VARIANT)" == "DOTNET20"
265         mt.exe -nologo -manifest "randpkt.exe.manifest" -outputresource:randpkt.exe;1
266 !ENDIF
267
268 dumpcap.exe     : $(LIBS_CHECK) config.h svnversion.h $(dumpcap_OBJECTS) getopt.obj epan/unicode-utils.obj inet_ntop.obj mkstemp.obj wiretap\wiretap-$(WTAP_VERSION).lib image\dumpcap.res
269         @echo Linking $@
270         $(LINK) @<<
271                 /OUT:dumpcap.exe $(conflags) $(conlibsdll) $(LDFLAGS) /SUBSYSTEM:console $(dumpcap_LIBS) $(dumpcap_OBJECTS) getopt.obj inet_ntop.obj mkstemp.obj image\dumpcap.res
272 <<
273 !IF "$(MSVC_VARIANT)" == "MSVC2005" || "$(MSVC_VARIANT)" == "MSVC2005EE" || "$(MSVC_VARIANT)" == "DOTNET20"
274         mt.exe -nologo -manifest "dumpcap.exe.manifest" -outputresource:dumpcap.exe;1
275 !ENDIF
276
277
278 config.h        : config.h.win32 config.nmake
279         sed -e s/@VERSION@/$(VERSION)/ \
280             -e "s/@HAVE_GNU_ADNS@/$(ADNS_CONFIG)/" \
281             -e "s/@HAVE_PCRE@/$(PCRE_CONFIG)/" \
282             -e "s/@HAVE_KFW@/$(KFW_CONFIG)/" \
283             -e "s/@HAVE_NETTLE@/$(NETTLE_CONFIG)/" \
284             -e "s/@HAVE_LIBZ@/$(ZLIB_CONFIG)/" \
285             -e "s/@HAVE_LIBPCAP@/$(WINPCAP_CONFIG)/" \
286             -e "s/@HAVE_PCAP_FINDALLDEVS@/$(PCAP_FINDALLDEVS_CONFIG)/" \
287             -e "s/@HAVE_PCAP_DATALINK_NAME_TO_VAL@/$(PCAP_DATALINK_NAME_TO_VAL_CONFIG)/" \
288             -e "s/@HAVE_PCAP_DATALINK_VAL_TO_NAME@/$(PCAP_DATALINK_VAL_TO_NAME_CONFIG)/" \
289             -e "s/@HAVE_PCAP_BREAKLOOP@/$(PCAP_BREAKLOOP_CONFIG)/" \
290             -e "s/@HAVE_REMOTE@/$(PCAP_HAVE_REMOTE_CONFIG)/" \
291             -e "s/@HAVE_PCAP_REMOTE@/$(PCAP_REMOTE_CONFIG)/" \
292             -e "s/@HAVE_PCAP_OPEN@/$(PCAP_OPEN_CONFIG)/" \
293             -e "s/@HAVE_PCAP_FINDALLDEVS_EX@/$(PCAP_FINDALLDEVS_EX_CONFIG)/" \
294             -e "s/@HAVE_PCAP_CREATESRCSTR@/$(PCAP_CREATESRCSTR_CONFIG)/" \
295             -e "s/@HAVE_PCAP_SETSAMPLING@/$(PCAP_SETSAMPLING_CONFIG)/" \
296             -e "s/@HAVE_LIBWIRESHARKDLL@/$(LIBWIRESHARK_CONFIG)/" \
297             -e "s/@WPCAP_CONSTIFIED@/$(WPCAP_CONSTIFIED_CONFIG)/" \
298             -e "s/@HAVE_LIBGNUTLS@/$(GNUTLS_CONFIG)/" \
299             -e "s/@HAVE_LIBGCRYPT@/$(LIBGCRYPT_CONFIG)/" \
300             -e "s/@HAVE_LUA@/$(LUA_CONFIG)/" \
301             -e "s/@HAVE_LUA_5_1@/$(LUA_VERSION)/" \
302             -e "s/@HAVE_AIRPCAP@/$(AIRPCAP_CONFIG)/" \
303             -e "s/@HAVE_AIRPDCAP@/$(AIRPDCAP_CONFIG)/" \
304             -e "s/@HAVE_LIBPORTAUDIO@/$(PORTAUDIO_CONFIG)/" \
305             -e "s/@PORTAUDIO_API_1@/$(PORTAUDIO_API_CONFIG)/" \
306             -e "s/@HAVE_SMI@/$(SMI_CONFIG)/" \
307             < config.h.win32 > $@
308
309 ps.c    : rdps.exe print.ps
310         rdps print.ps ps.c
311
312
313 #
314 # Build the version string
315 #
316 !IF EXIST(".svn/entries")
317 SVNENTRIES = .svn/entries
318 !ELSE
319 SVNENTRIES =
320 !ENDIF
321 svnversion.h: $(SVNENTRIES)
322         rm -f svnversion.h
323         $(PERL) make-version.pl
324
325 #
326 # Build the short version of the authors file for the about dialog
327 #
328 AUTHORS-SHORT: AUTHORS make-authors-short.pl
329         $(PERL) perlnoutf.pl make-authors-short.pl < AUTHORS > AUTHORS-SHORT
330
331 #
332 # Build the short version of the authors file with formatting codes for
333 # the man page
334 #
335 AUTHORS-SHORT-FORMAT: AUTHORS-SHORT make-authors-format.pl
336     $(PERL) perlnoutf.pl make-authors-format.pl < AUTHORS-SHORT > AUTHORS-SHORT-FORMAT
337
338 #
339 # Build "tshark-tap-register.c", which contains a function
340 # "register_all_tap_listeners()"
341 # that calls the register routines for all TShark tap listeners.
342 #
343 # We do this by grepping through sources.
344 #
345 # Formatting conventions:  The name of the tap_listener_register_*
346 # routines must start in column zero, or must be preceded only by
347 # "void " starting in column zero, and must not be inside #if.
348 #
349 # The first argument is the name of the file to write.
350 # The second argument is the directory in which the source files live.
351 # All subsequent arguments are the files to scan.
352 #
353 tshark-tap-register.c: $(TSHARK_TAP_SRC) make-tapreg-dotc
354         @echo Making tshark-tap-register.c
355         @$(SH) make-tapreg-dotc tshark-tap-register.c . $(TSHARK_TAP_SRC)
356
357 text2pcap-scanner.c : text2pcap-scanner.l
358         $(LEX) -otext2pcap-scanner.c text2pcap-scanner.l
359
360 clean-local: clean-deps
361         rm -f $(wireshark_OBJECTS) $(tshark_OBJECTS) $(dumpcap_OBJECTS) $(rawshark_OBJECTS) \
362                 $(EXTRA_OBJECTS) $(EXECUTABLES) *.pdb *.exe.manifest \
363                 capinfos.obj editcap.obj mergecap.obj text2pcap.obj \
364                 nio-ie5.obj update.obj \
365                 text2pcap-scanner.obj text2pcap-scanner.c rdps.obj \
366                 rdps.pdb rdps.exe rdps.ilk config.h ps.c AUTHORS-SHORT \
367                 AUTHORS-SHORT-FORMAT $(LIBS_CHECK) \
368                 dftest.obj dftest.exe randpkt.obj randpkt.ext \
369                 doxygen.cfg \
370                 $(RESOURCES) libwireshark.dll wiretap-$(WTAP_VERSION).dll
371
372 clean: clean-local
373         cd asn1
374         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake clean
375         cd ..
376         cd wiretap
377         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake clean
378         cd ../codecs
379         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake clean
380         cd ../gtk
381         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake clean
382         cd ../epan
383         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake clean
384         cd ../plugins
385         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake clean
386         cd ../tools
387         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake clean
388         cd ../image
389         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake clean
390         cd ../doc
391         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake clean
392         cd ../help
393         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake clean
394         cd ../packaging/nsis
395         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake clean
396         cd ../u3/win32
397         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake clean
398         cd ../../portableapps/win32
399         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake clean
400         cd ../../..
401
402 # "distclean" removes all files not part of the distribution.
403 # It does not remove generated files that are part of the distribution.
404 distclean-local: clean-local
405 !IFDEF ZLIB_DIR
406         rm -f $(ZLIB_DIR)\zlib1.dll $(ZLIB_DIR)\zlib1.dll.manifest \
407                 $(ZLIB_DIR)\include\zlib.h $(ZLIB_DIR)\include\zconf.h \
408                 $(ZLIB_DIR)\lib\zdll.lib
409 !ENDIF
410         rm -f config.h $(BUILT_SOURCES)
411
412 distclean: distclean-local
413         cd wiretap
414         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake distclean
415         cd ../codecs
416         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake distclean
417         cd ../gtk
418         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake distclean
419         cd ../epan
420         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake distclean
421         cd ../plugins
422         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake distclean
423         cd ../tools
424         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake distclean
425         cd ../image
426         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake distclean
427         cd ../doc
428         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake distclean
429         cd ../help
430         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake distclean
431         cd ../packaging/nsis
432         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake distclean
433         cd ../u3/win32
434         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake distclean
435         cd ../../portableapps/win32
436         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake distclean
437         cd ../../..
438
439 # Make "maintainer-clean" only if you would like to remove ALL generated
440 # files.
441 # Be sure to have python and perl installed to regenerate them.
442 maintainer-clean-local: distclean-local
443         rm -f $(GENERATED_FILES)
444
445 maintainer-clean: maintainer-clean-local
446         cd wiretap
447         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake maintainer-clean
448         cd ../codecs
449         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake maintainer-clean
450         cd ../gtk
451         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake maintainer-clean
452         cd ../epan
453         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake maintainer-clean
454         cd ../plugins
455         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake maintainer-clean
456         cd ../tools
457         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake maintainer-clean
458         cd ../image
459         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake maintainer-clean
460         cd ../doc
461         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake maintainer-clean
462         cd ../help
463         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake maintainer-clean
464         cd ../packaging/nsis
465         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake maintainer-clean
466         cd ../u3/win32
467         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake maintainer-clean
468         cd ../../portableapps/win32
469         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake maintainer-clean
470         cd ../../..
471
472 tools::
473         cd tools
474         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake
475         cd ..
476
477 image::
478         cd image
479         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake
480         cd ..
481
482 !IFDEF ZLIB_DIR
483 # Non-MSVC6 variants have to avoid indirectly using msvcrt.dll,
484 # therefore compile the zlib dll from source ZLIB_DIR package.
485 # To avoid path problems, copy the zlib sources to a temp dir,
486 # compile and copy the resulting files back to (source) ZLIB_DIR
487 $(ZLIB_DLL):
488         xcopy $(ZLIB_DIR) zlib.tmp /D /I /E /Y
489         cd zlib.tmp
490         $(MAKE) /$(MAKEFLAGS) -f win32/Makefile.msc zlib1.dll LOC="-D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE"
491         if not exist $(ZLIB_DIR) mkdir $(ZLIB_DIR)
492         if not exist $(ZLIB_DIR)\lib mkdir $(ZLIB_DIR)\lib
493         if not exist $(ZLIB_DIR)\include mkdir $(ZLIB_DIR)\include
494 !IF "$(MSVC_VARIANT)" == "MSVC2005" || "$(MSVC_VARIANT)" == "MSVC2005EE" || "$(MSVC_VARIANT)" == "DOTNET20"
495         mt.exe -nologo -manifest "zlib1.dll.manifest" -outputresource:zlib1.dll;2
496 !ENDIF
497         copy zlib1.dll $(ZLIB_DIR)
498         copy zdll.lib $(ZLIB_DIR)\lib
499         copy zconf.h $(ZLIB_DIR)\include
500         copy zlib.h $(ZLIB_DIR)\include
501         cd ..
502     rm -r -f zlib.tmp
503 !ENDIF
504
505 wiretap::
506         cd wiretap
507         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake
508         cd ..
509
510 codecs::
511         cd codecs
512         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake
513         cd ..
514
515 gtk:: help config.h svnversion.h AUTHORS-SHORT doxygen
516         cd gtk
517         $(MAKE) /$(MAKEFLAGS) /f Makefile.nmake libui.lib
518         cd ..
519
520 epan:: $(RESOURCES) $(ZLIB_DLL) wiretap\wiretap-$(WTAP_VERSION).lib $(BUILT_SOURCES) doxygen
521         cd epan
522         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake
523         cd ..
524
525 plugins::
526         cd plugins
527         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake
528         cd ..
529
530 doc::
531         cd doc
532         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake
533         cd ..
534
535 help::
536         cd help
537         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake
538         cd ..
539
540 doxygen.cfg: config.nmake doxygen.cfg.in
541         sed -e s/@VERSION@/$(VERSION)/ \
542             < doxygen.cfg.in > $@
543
544 doxygen-run:
545 !IFDEF DOXYGEN
546         $(DOXYGEN) doxygen.cfg
547 !ENDIF
548
549 doxygen: doxygen.cfg doxygen-run
550
551 ################################################################################
552 # Prepare build environment by downloading and installing required libraries
553 ################################################################################
554
555 # The required tools to build Wireshark.
556 #
557 # The 'find' tool is available both in \WINNT\System32 and in cygwin's /usr/bin.
558 # We only need the cygwin version (for some shell scripts).
559 # In the PATH, System32 is before cygwin's dir, so explicitly check for /usr/bin/find.
560 REQUIRED_TOOLS=\
561         $(CC) \
562         $(LINK) \
563         nmake \
564         $(SH_PROG)      \
565         $(YACC) \
566         $(LEX)  \
567         env     \
568         grep    \
569         /usr/bin/find   \
570         $(PERL) \
571         $(PYTHON)       \
572         sed     \
573         unzip   \
574         wget
575
576 verify_tools:
577         @$(SH) tools\win32-setup.sh --appverify $(REQUIRED_TOOLS)
578
579 # Targets and etc used to verify or download libraries
580
581 !IFNDEF WIN32_SETUP_OPT
582 WIN32_SETUP_OPT=--download
583 !ENDIF
584
585 # Verify that the required library 'package' (zip) files have been downloaded.
586 # (It seems reasonable to assume that if the files have been downloaded
587 #  then they have been installed).
588 check_libs:
589         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake WIN32_SETUP_OPT=--libverify process_libs
590
591 # Verify library packages only if Makefile.nmake has been updated
592 #  (or dummy file doesn't exist because of 'make clean' or whatever)
593 # (To disable library verification when Makefile.nmake changes,
594 #  comment out the commands for the following target).
595 # touch is only called if libverify succeeds
596 $(LIBS_CHECK): Makefile.nmake
597         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake WIN32_SETUP_OPT=--libverify process_libs
598         @touch --reference=Makefile.nmake $@
599
600 # Download (if needed) and install all the required libraries into WIRESHARK_LIBS.
601 # A clean_setup is done first to ensure that the target dirs don't
602 # contain old files remaining from a previous setup run.
603 setup: verify_tools clean_setup process_libs
604
605
606 # The process_libs target when invoked causes either a --libverify or a --download for all the required libraries.
607 # (The choice is determined by the value of the macro WIN32_SETUP_OPT).
608 process_libs:
609     if not exist $(WIRESHARK_LIBS) md $(WIRESHARK_LIBS)
610 !IF "$(GTK_INST_VERSION)" == "2.12"
611         @$(SH) tools\win32-setup.sh "$(WIN32_SETUP_OPT)" "$(WIRESHARK_LIBS)" \
612                 glib gtk2.12/glib-2.16.1.zip
613         @$(SH) tools\win32-setup.sh "$(WIN32_SETUP_OPT)" "$(WIRESHARK_LIBS)" \
614                 glib gtk2.12/glib-dev-2.16.1.zip
615 !ELSEIF "$(GTK_INST_VERSION)" == "2.10"
616         @$(SH) tools\win32-setup.sh "$(WIN32_SETUP_OPT)" "$(WIRESHARK_LIBS)" \
617                 glib gtk2.10/glib-2.12.13.zip
618         @$(SH) tools\win32-setup.sh "$(WIN32_SETUP_OPT)" "$(WIRESHARK_LIBS)" \
619                 glib gtk2.10/glib-dev-2.12.13.zip
620 !ELSE
621 !ERROR ? Unknown or invalid GTK_INST_VERSION
622 !ENDIF
623 !IFDEF ICONV_DIR
624         @$(SH) tools\win32-setup.sh "$(WIN32_SETUP_OPT)" "$(WIRESHARK_LIBS)" \
625                 libiconv-1.9.1.bin.woe32 libiconv-1.9.1.bin.woe32.zip
626 !ENDIF
627         @$(SH) tools\win32-setup.sh "$(WIN32_SETUP_OPT)" "$(WIRESHARK_LIBS)" \
628                 gettext-runtime-0.17-1 gettext-runtime-0.17-1.zip
629 !IFDEF KFW_DIR
630         @$(SH) tools\win32-setup.sh "$(WIN32_SETUP_OPT)" "$(WIRESHARK_LIBS)" \
631                 kfw-2.5 kfw-2.5.zip
632 !ENDIF
633 !IFDEF PCAP_DIR
634         @$(SH) tools\win32-setup.sh "$(WIN32_SETUP_OPT)" "$(WIRESHARK_LIBS)" \
635                 . WpdPack_3_1.zip
636 !ENDIF
637 !IFDEF AIRPCAP_DIR
638         @$(SH) tools\win32-setup.sh "$(WIN32_SETUP_OPT)" "$(WIRESHARK_LIBS)" \
639                 AirPcap_Devpack_1_0_0_594 AirPcap_Devpack_1_0_0_594.zip
640 !ENDIF
641 !IFDEF ADNS_DIR
642         @$(SH) tools\win32-setup.sh "$(WIN32_SETUP_OPT)" "$(WIRESHARK_LIBS)" \
643                 . adns-1.0-win32-05.zip
644 !ENDIF
645 !IFDEF PCRE_DIR
646         @$(SH) tools\win32-setup.sh "$(WIN32_SETUP_OPT)" "$(WIRESHARK_LIBS)" \
647                 pcre-7.0 pcre-7.0-bin.zip
648         @$(SH) tools\win32-setup.sh "$(WIN32_SETUP_OPT)" "$(WIRESHARK_LIBS)" \
649                 pcre-7.0 pcre-7.0-lib.zip
650 !ENDIF
651 !IFDEF ZLIB_DIR
652         @$(SH) tools\win32-setup.sh "$(WIN32_SETUP_OPT)" "$(WIRESHARK_LIBS)" \
653                 zlib123 zlib123.zip
654 !ENDIF
655 !IFDEF LUA_DIR
656         @$(SH) tools\win32-setup.sh "$(WIN32_SETUP_OPT)" "$(WIRESHARK_LIBS)" \
657                 . lua5_1_dll.zip
658 !ENDIF
659
660 !IFDEF GNUTLS_DIR
661         @$(SH) tools\win32-setup.sh "$(WIN32_SETUP_OPT)" "$(WIRESHARK_LIBS)" \
662                 . gnutls-1.6.1-1.zip
663 !ENDIF
664 !IFDEF PORTAUDIO_DIR
665         @$(SH) tools\win32-setup.sh "$(WIN32_SETUP_OPT)" "$(WIRESHARK_LIBS)" \
666                 . portaudio_v19.zip
667 !ENDIF
668 !IFDEF SMI_DIR
669         @$(SH) tools\win32-setup.sh "$(WIN32_SETUP_OPT)" "$(WIRESHARK_LIBS)" \
670                 . libsmi-0.4.5.zip
671 !ENDIF
672
673 !IFDEF GTK_DIR
674 !IF "$(GTK_INST_VERSION)" == "2.12"
675         @$(SH) tools\win32-setup.sh "$(WIN32_SETUP_OPT)" "$(WIRESHARK_LIBS)" \
676                 gtk2 gtk2.12/gtk+-2.12.9.zip
677         @$(SH) tools\win32-setup.sh "$(WIN32_SETUP_OPT)" "$(WIRESHARK_LIBS)" \
678                 gtk2 gtk2.12/gtk+-dev-2.12.9.zip
679         @$(SH) tools\win32-setup.sh "$(WIN32_SETUP_OPT)" "$(WIRESHARK_LIBS)" \
680                 gtk2 gtk2.12/cairo-1.4.14.zip
681         @$(SH) tools\win32-setup.sh "$(WIN32_SETUP_OPT)" "$(WIRESHARK_LIBS)" \
682                 gtk2 gtk2.12/cairo-dev-1.4.14.zip
683         @$(SH) tools\win32-setup.sh "$(WIN32_SETUP_OPT)" "$(WIRESHARK_LIBS)" \
684                 gtk2 gtk2.12/atk-1.22.0.zip
685         @$(SH) tools\win32-setup.sh "$(WIN32_SETUP_OPT)" "$(WIRESHARK_LIBS)" \
686                 gtk2 gtk2.12/atk-dev-1.22.0.zip
687         @$(SH) tools\win32-setup.sh "$(WIN32_SETUP_OPT)" "$(WIRESHARK_LIBS)" \
688                 gtk2 gtk2.12/libpng-1.2.8-bin.zip
689         @$(SH) tools\win32-setup.sh "$(WIN32_SETUP_OPT)" "$(WIRESHARK_LIBS)" \
690                 gtk2 gtk2.12/tiff-3.8.2-1-bin.zip
691         @$(SH) tools\win32-setup.sh "$(WIN32_SETUP_OPT)" "$(WIRESHARK_LIBS)" \
692                 gtk2 gtk2.12/jpeg-6b-4-bin.zip
693 !ELSEIF "$(GTK_INST_VERSION)" == "2.10"
694         @$(SH) tools\win32-setup.sh "$(WIN32_SETUP_OPT)" "$(WIRESHARK_LIBS)" \
695                 gtk2 gtk2.10/gtk+-2.10.14.zip
696         @$(SH) tools\win32-setup.sh "$(WIN32_SETUP_OPT)" "$(WIRESHARK_LIBS)" \
697                 gtk2 gtk2.10/gtk+-dev-2.10.14.zip
698         @$(SH) tools\win32-setup.sh "$(WIN32_SETUP_OPT)" "$(WIRESHARK_LIBS)" \
699                 gtk2 gtk2.10/cairo-1.4.8.zip
700         @$(SH) tools\win32-setup.sh "$(WIN32_SETUP_OPT)" "$(WIRESHARK_LIBS)" \
701                 gtk2 gtk2.10/cairo-dev-1.4.8.zip
702         @$(SH) tools\win32-setup.sh "$(WIN32_SETUP_OPT)" "$(WIRESHARK_LIBS)" \
703                 gtk2 gtk2.10/atk-1.18.0.zip
704         @$(SH) tools\win32-setup.sh "$(WIN32_SETUP_OPT)" "$(WIRESHARK_LIBS)" \
705                 gtk2 gtk2.10/atk-dev-1.18.0.zip
706         @$(SH) tools\win32-setup.sh "$(WIN32_SETUP_OPT)" "$(WIRESHARK_LIBS)" \
707                 gtk2 gtk2.10/libpng-1.2.8-bin.zip
708 !ELSE
709 !ERROR ? Unknown or invalid GTK_INST_VERSION
710 !ENDIF
711 !IF "$(PANGO_INST_VERSION)" == "1.20"
712         @$(SH) tools\win32-setup.sh "$(WIN32_SETUP_OPT)" "$(WIRESHARK_LIBS)" \
713                 gtk2 gtk2.12/pango-1.20.0.zip
714         @$(SH) tools\win32-setup.sh "$(WIN32_SETUP_OPT)" "$(WIRESHARK_LIBS)" \
715                 gtk2 gtk2.12/pango-dev-1.20.0.zip
716 !ELSEIF "$(PANGO_INST_VERSION)" == "1.16"
717         @$(SH) tools\win32-setup.sh "$(WIN32_SETUP_OPT)" "$(WIRESHARK_LIBS)" \
718                 gtk2 gtk2.10/pango-1.16.4.zip
719         @$(SH) tools\win32-setup.sh "$(WIN32_SETUP_OPT)" "$(WIRESHARK_LIBS)" \
720                 gtk2 gtk2.10/pango-dev-1.16.4.zip
721 !ELSE
722 !ERROR ? Unknown or invalid PANGO_INST_VERSION
723 !ENDIF
724 !ENDIF
725 !IFDEF GTK_WIMP_DIR
726         @$(SH) tools\win32-setup.sh "$(WIN32_SETUP_OPT)" "$(WIRESHARK_LIBS)" \
727                 gtk-wimp gtk-wimp/gtk-wimp-0.7.0-bin.zip
728 !ENDIF
729 !IFDEF HHC_DIR
730         @$(SH) tools\win32-setup.sh "$(WIN32_SETUP_OPT)" "$(WIRESHARK_LIBS)" \
731                 user-guide user-guide-24665.zip
732 !ENDIF
733 !IFDEF UPX
734         @$(SH) tools\win32-setup.sh "$(WIN32_SETUP_OPT)" "$(WIRESHARK_LIBS)" \
735                 . upx301w.zip
736 !ENDIF
737 !IFDEF NASM
738         @$(SH) tools\win32-setup.sh "$(WIN32_SETUP_OPT)" "$(WIRESHARK_LIBS)" \
739                 . nasm-2.00-win32.zip
740 !ENDIF
741         @echo.
742         @echo Wireshark is ready to build.
743
744 # Cleanup files installed by the setup target. It will not remove the
745 # downloaded zip files.
746 # WHEN UPDATING LIBRARY VERSIONS, KEEP ALSO ONE FORMER VERSION SO
747 # UPDATING REMOVES THE FORMER USER DIRS
748 clean_setup:
749     rm -r -f $(WIRESHARK_LIBS)/adns-1.0-win32-05
750     rm -r -f $(WIRESHARK_LIBS)/gettext-0.14.5
751     rm -r -f $(WIRESHARK_LIBS)/gettext-runtime-0.17
752     rm -r -f $(WIRESHARK_LIBS)/gettext-runtime-0.17-1
753     rm -r -f $(WIRESHARK_LIBS)/glib
754     rm -r -f $(WIRESHARK_LIBS)/gnutls-1.6.1-1
755     rm -r -f $(WIRESHARK_LIBS)/gtk2
756     rm -r -f $(WIRESHARK_LIBS)/gtk+
757     rm -r -f $(WIRESHARK_LIBS)/gtk-wimp
758     rm -r -f $(WIRESHARK_LIBS)/kfw-2.5
759     rm -r -f $(WIRESHARK_LIBS)/libiconv-1.9.1.bin.woe32
760     rm -r -f $(WIRESHARK_LIBS)/lua5.1
761     rm -r -f $(WIRESHARK_LIBS)/libsmi-0.4.5
762     rm -r -f $(WIRESHARK_LIBS)/nasm-2.00
763     rm -r -f $(WIRESHARK_LIBS)/pcre-6.4
764     rm -r -f $(WIRESHARK_LIBS)/pcre-7.0
765     rm -r -f $(WIRESHARK_LIBS)/portaudio_v18_1
766     rm -r -f $(WIRESHARK_LIBS)/portaudio_v19
767     rm -r -f $(WIRESHARK_LIBS)/user-guide
768     rm -r -f $(WIRESHARK_LIBS)/WpdPack
769     rm -r -f $(WIRESHARK_LIBS)/AirPcap_Devpack_1_0_0_594
770     rm -r -f $(WIRESHARK_LIBS)/zlib123
771     rm -r -f $(WIRESHARK_LIBS)/zlib123-dll
772     rm -r -f $(WIRESHARK_LIBS)/upx301w
773
774 ################################################################################
775 # Prepare the debug trees for running Wireshark/Tshark from there.
776 ################################################################################
777
778
779 # prepare debugging of Wireshark in INSTALL_DIR
780 debug-wireshark: wireshark.exe install-generated-files
781
782 # prepare debugging of tshark in INSTALL_DIR
783 debug-tshark: tshark.exe install-generated-files
784
785 # prepare debugging of rawshark in INSTALL_DIR
786 debug-rawshark: rawshark.exe install-generated-files
787
788 # prepare debugging of dumpcap in INSTALL_DIR
789 debug-dumpcap: dumpcap.exe install-generated-files
790
791
792 # install generated files (exe, "our" libs, ...)
793 install-generated-files:
794         set copycmd=/y
795 !IF "$(MSVC_VARIANT)" == "MSVC2008EE"
796         xcopy "$(MSVCR_DLL)" $(INSTALL_DIR)
797 !ENDIF
798         if not exist $(INSTALL_DIR) mkdir $(INSTALL_DIR)
799 !IFDEF ENABLE_LIBWIRESHARK
800         xcopy epan\libwireshark.dll $(INSTALL_DIR) /d
801 !ENDIF
802         xcopy ".\wiretap\wiretap-$(WTAP_VERSION).dll" $(INSTALL_DIR) /d
803         if exist ".\wiretap\wiretap-$(WTAP_VERSION).pdb" xcopy ".\wiretap\wiretap-$(WTAP_VERSION).pdb" $(INSTALL_DIR) /d
804         xcopy ".\epan\libwireshark.dll" $(INSTALL_DIR) /d
805         if exist ".\epan\libwireshark.pdb" xcopy ".\epan\libwireshark.pdb" $(INSTALL_DIR) /d
806         if exist wireshark.exe copy wireshark.exe $(INSTALL_DIR)\wireshark.exe
807         if exist wireshark.pdb copy wireshark.pdb $(INSTALL_DIR)\wireshark.pdb
808         if exist ".\docbook\user-guide.chm" xcopy ".\docbook\user-guide.chm" $(INSTALL_DIR) /d
809         if exist tshark.exe xcopy tshark.exe $(INSTALL_DIR) /d
810         if exist tshark.pdb xcopy tshark.pdb $(INSTALL_DIR) /d
811         if exist rawshark.exe xcopy rawshark.exe $(INSTALL_DIR) /d
812         if exist rawshark.exe.manifest xcopy rawshark.exe.manifest $(INSTALL_DIR) /d
813         if exist rawshark.pdb xcopy rawshark.pdb $(INSTALL_DIR) /d
814         if exist dumpcap.exe xcopy dumpcap.exe $(INSTALL_DIR) /d
815         if exist dumpcap.pdb xcopy dumpcap.pdb $(INSTALL_DIR) /d
816         if exist mergecap.exe xcopy mergecap.exe $(INSTALL_DIR) /d
817         if exist mergecap.pdb xcopy mergecap.pdb $(INSTALL_DIR) /d
818         if exist text2pcap.exe xcopy text2pcap.exe $(INSTALL_DIR) /d
819         if exist text2pcap.pdb xcopy text2pcap.pdb $(INSTALL_DIR) /d
820         if exist capinfos.exe xcopy capinfos.exe $(INSTALL_DIR) /d
821         if exist capinfos.pdb xcopy capinfos.pdb $(INSTALL_DIR) /d
822         if exist editcap.exe xcopy editcap.exe $(INSTALL_DIR) /d
823         if exist editcap.pdb xcopy editcap.pdb $(INSTALL_DIR) /d
824         xcopy ".\AUTHORS-SHORT" $(INSTALL_DIR) /d
825         xcopy ".\manuf" $(INSTALL_DIR) /d
826         xcopy ".\services" $(INSTALL_DIR) /d
827         xcopy ".\FAQ" $(INSTALL_DIR) /d
828         xcopy ".\README" $(INSTALL_DIR) /d
829         xcopy ".\README.win32" $(INSTALL_DIR) /d
830         xcopy ".\AUTHORS-SHORT" $(INSTALL_DIR) /d
831         xcopy ".\COPYING" $(INSTALL_DIR) /d
832         copy ".\NEWS" $(INSTALL_DIR)\NEWS.txt
833         xcopy ".\cfilters" $(INSTALL_DIR) /d
834         xcopy ".\colorfilters" $(INSTALL_DIR) /d
835         xcopy ".\dfilters" $(INSTALL_DIR) /d
836         xcopy ".\smi_modules" $(INSTALL_DIR) /d
837 !IFDEF LUA_DIR
838         xcopy ".\epan\wslua\init.lua" $(INSTALL_DIR) /d
839         xcopy ".\epan\wslua\console.lua" $(INSTALL_DIR) /d
840 !ENDIF
841         xcopy doc\*.html $(INSTALL_DIR) /d
842         if not exist $(INSTALL_DIR)\help mkdir $(INSTALL_DIR)\help
843         xcopy ".\help\*.*" $(INSTALL_DIR)\help /d
844         if not exist $(INSTALL_DIR)\dtds mkdir $(INSTALL_DIR)\dtds
845         xcopy ".\dtds\*.*" $(INSTALL_DIR)\dtds /d
846         if not exist $(INSTALL_DIR)\asn1 mkdir $(INSTALL_DIR)\asn1
847         echo create empty asn1 default.tt file to prevent problems 2> $(INSTALL_DIR)\asn1\default.tt
848         if not exist $(INSTALL_DIR)\radius mkdir $(INSTALL_DIR)\radius
849         xcopy ".\radius\*.*" $(INSTALL_DIR)\radius /d
850         if not exist $(INSTALL_DIR)\diameter mkdir $(INSTALL_DIR)\diameter
851         xcopy ".\diameter\*.dtd" $(INSTALL_DIR)\diameter /d
852         xcopy ".\diameter\*.xml" $(INSTALL_DIR)\diameter /d
853         if not exist $(INSTALL_DIR)\tpncp mkdir $(INSTALL_DIR)\tpncp
854         xcopy ".\tpncp\*.dat" $(INSTALL_DIR)\tpncp /d
855         if not exist $(INSTALL_DIR)\wimaxasncp mkdir $(INSTALL_DIR)\wimaxasncp
856         xcopy ".\wimaxasncp\*.*" $(INSTALL_DIR)\wimaxasncp /d
857         if not exist $(INSTALL_DIR)\plugins mkdir $(INSTALL_DIR)\plugins
858         if not exist $(INSTALL_DIR)\plugins\$(VERSION) mkdir $(INSTALL_DIR)\plugins\$(VERSION)
859         xcopy ".\plugins\agentx\agentx.dll" $(INSTALL_DIR)\plugins\$(VERSION) /d
860         xcopy ".\plugins\artnet\artnet.dll" $(INSTALL_DIR)\plugins\$(VERSION) /d
861         xcopy ".\plugins\asn1\asn1.dll" $(INSTALL_DIR)\plugins\$(VERSION) /d
862         xcopy ".\plugins\ciscosm\ciscosm.dll" $(INSTALL_DIR)\plugins\$(VERSION) /d
863         xcopy ".\plugins\docsis\docsis.dll" $(INSTALL_DIR)\plugins\$(VERSION) /d
864         xcopy ".\plugins\enttec\enttec.dll" $(INSTALL_DIR)\plugins\$(VERSION) /d
865         xcopy ".\plugins\ethercat\ethercat.dll" $(INSTALL_DIR)\plugins\$(VERSION) /d
866         xcopy ".\plugins\giop\coseventcomm.dll" $(INSTALL_DIR)\plugins\$(VERSION) /d
867         xcopy ".\plugins\giop\cosnaming.dll" $(INSTALL_DIR)\plugins\$(VERSION) /d
868         xcopy ".\plugins\giop\parlay.dll" $(INSTALL_DIR)\plugins\$(VERSION) /d
869         xcopy ".\plugins\giop\tango.dll" $(INSTALL_DIR)\plugins\$(VERSION) /d
870         xcopy ".\plugins\gryphon\gryphon.dll" $(INSTALL_DIR)\plugins\$(VERSION) /d
871         xcopy ".\plugins\infiniband\infiniband.dll" $(INSTALL_DIR)\plugins\$(VERSION) /d
872         xcopy ".\plugins\irda\irda.dll" $(INSTALL_DIR)\plugins\$(VERSION) /d
873         xcopy ".\plugins\lwres\lwres.dll" $(INSTALL_DIR)\plugins\$(VERSION) /d
874         xcopy ".\plugins\m2m\m2m.dll" $(INSTALL_DIR)\plugins\$(VERSION) /d
875         xcopy ".\plugins\mate\mate.dll" $(INSTALL_DIR)\plugins\$(VERSION) /d
876         xcopy ".\plugins\opcua\opcua.dll" $(INSTALL_DIR)\plugins\$(VERSION) /d
877         xcopy ".\plugins\opsi\opsi.dll" $(INSTALL_DIR)\plugins\$(VERSION) /d
878         xcopy ".\plugins\pcli\pcli.dll" $(INSTALL_DIR)\plugins\$(VERSION) /d
879         xcopy ".\plugins\profinet\profinet.dll" $(INSTALL_DIR)\plugins\$(VERSION) /d
880         xcopy ".\plugins\rlm\rlm.dll" $(INSTALL_DIR)\plugins\$(VERSION) /d
881         xcopy ".\plugins\rtnet\rtnet.dll" $(INSTALL_DIR)\plugins\$(VERSION) /d
882         xcopy ".\plugins\rudp\rudp.dll" $(INSTALL_DIR)\plugins\$(VERSION) /d
883         xcopy ".\plugins\sbus\sbus.dll" $(INSTALL_DIR)\plugins\$(VERSION) /d
884         xcopy ".\plugins\stats_tree\stats_tree.dll" $(INSTALL_DIR)\plugins\$(VERSION) /d
885         xcopy ".\plugins\unistim\unistim.dll" $(INSTALL_DIR)\plugins\$(VERSION) /d
886         xcopy ".\plugins\v5ua\v5ua.dll" $(INSTALL_DIR)\plugins\$(VERSION) /d
887         xcopy ".\plugins\wimax\wimax.dll" $(INSTALL_DIR)\plugins\$(VERSION) /d
888         xcopy ".\plugins\wimaxasncp\wimaxasncp.dll" $(INSTALL_DIR)\plugins\$(VERSION) /d
889         if exist custom-install.bat custom-install $(INSTALL_DIR) $(VERSION)
890
891 # "install-all" will copy all files needed to run Wireshark/Tshark
892 # to the INSTALL_DIR, so you can run/debug Wireshark/Tshark from there.
893 install-all: install-generated-files
894         set copycmd=/y
895         if not exist $(INSTALL_DIR) mkdir $(INSTALL_DIR)
896         xcopy $(GTK_DIR)\bin\libgdk-win32-2.0-0.dll $(INSTALL_DIR) /d
897         xcopy $(GTK_DIR)\bin\libgdk_pixbuf-2.0-0.dll $(INSTALL_DIR) /d
898         xcopy $(GTK_DIR)\bin\libgtk-win32-2.0-0.dll $(INSTALL_DIR) /d
899         xcopy $(GTK_DIR)\bin\libatk-1.0-0.dll $(INSTALL_DIR) /d
900         xcopy $(GTK_DIR)\bin\libpango-1.0-0.dll $(INSTALL_DIR) /d
901         xcopy $(GTK_DIR)\bin\libpangowin32-1.0-0.dll $(INSTALL_DIR) /d
902         if not exist $(INSTALL_DIR)\etc mkdir $(INSTALL_DIR)\etc
903         if not exist $(INSTALL_DIR)\etc\gtk-2.0 mkdir $(INSTALL_DIR)\etc\gtk-2.0
904         if not exist $(INSTALL_DIR)\etc\pango mkdir $(INSTALL_DIR)\etc\pango
905         if not exist $(INSTALL_DIR)\lib mkdir $(INSTALL_DIR)\lib
906         if not exist $(INSTALL_DIR)\lib\gtk-2.0 mkdir $(INSTALL_DIR)\lib\gtk-2.0
907         if not exist $(INSTALL_DIR)\lib\gtk-2.0\$(GTK_LIB_DIR) mkdir $(INSTALL_DIR)\lib\gtk-2.0\$(GTK_LIB_DIR)
908         if not exist $(INSTALL_DIR)\lib\gtk-2.0\$(GTK_LIB_DIR)\loaders mkdir $(INSTALL_DIR)\lib\gtk-2.0\$(GTK_LIB_DIR)\loaders
909         if not exist $(INSTALL_DIR)\lib\gtk-2.0\$(GTK_LIB_DIR)\immodules mkdir $(INSTALL_DIR)\lib\gtk-2.0\$(GTK_LIB_DIR)\immodules
910         if not exist $(INSTALL_DIR)\lib\gtk-2.0\$(GTK_LIB_DIR)\immodules mkdir $(INSTALL_DIR)\lib\gtk-2.0\$(GTK_LIB_DIR)\engines
911 #       if not exist $(INSTALL_DIR)\lib\pango mkdir $(INSTALL_DIR)\lib\pango
912 #       if not exist $(INSTALL_DIR)\lib\pango\$(PANGO_LIB_DIR) mkdir $(INSTALL_DIR)\lib\pango\$(PANGO_LIB_DIR)
913 #       if not exist $(INSTALL_DIR)\lib\pango\$(PANGO_LIB_DIR)\modules mkdir $(INSTALL_DIR)\lib\pango\$(PANGO_LIB_DIR)\modules
914         xcopy $(GTK_DIR)\etc\gtk-2.0\*.* $(INSTALL_DIR)\etc\gtk-2.0 /d
915         xcopy $(GTK_DIR)\etc\pango\pango.* $(INSTALL_DIR)\etc\pango /d
916         xcopy $(GTK_DIR)\lib\gtk-2.0\$(GTK_LIB_DIR)\loaders\libpixbufloader-*.dll $(INSTALL_DIR)\lib\gtk-2.0\$(GTK_LIB_DIR)\loaders /d
917         xcopy $(GTK_DIR)\lib\gtk-2.0\$(GTK_LIB_DIR)\immodules\im-*.dll $(INSTALL_DIR)\lib\gtk-2.0\$(GTK_LIB_DIR)\immodules /d
918 #       xcopy $(GTK_DIR)\lib\pango\$(PANGO_LIB_DIR)\modules\pango-*.dll $(INSTALL_DIR)\lib\pango\$(PANGO_LIB_DIR)\modules /d
919 !IFDEF NEED_LIBPNG_DLL
920         xcopy $(GTK_DIR)\bin\libpng13.dll $(INSTALL_DIR) /d
921 !ENDIF
922 !IFDEF NEED_LIBTIFF_DLL
923         xcopy $(GTK_DIR)\bin\libtiff3.dll $(INSTALL_DIR) /d
924 !ENDIF
925 !IFDEF NEED_LIBJPEG_DLL
926         xcopy $(GTK_DIR)\bin\jpeg62.dll $(INSTALL_DIR) /d
927 !ENDIF
928 !IFDEF NEED_CAIRO_DLL
929         xcopy $(GTK_DIR)\bin\libcairo-2.dll $(INSTALL_DIR)  /d
930         xcopy $(GTK_DIR)\bin\libpangocairo-1.0-0.dll $(INSTALL_DIR) /d
931 !ENDIF
932 !IFDEF GTK_WIMP_DIR
933         if not exist $(INSTALL_DIR)\$(GTK_WIMP_DLLDST_DIR) mkdir $(INSTALL_DIR)\$(GTK_WIMP_DLLDST_DIR)
934         xcopy "$(GTK_WIMP_DLLSRC_DIR)\libwimp.dll" $(INSTALL_DIR)\$(GTK_WIMP_DLLDST_DIR) /d
935         if not exist $(INSTALL_DIR)\$(GTK_WIMP_RCDST_DIR) mkdir $(INSTALL_DIR)\$(GTK_WIMP_RCDST_DIR)
936         xcopy "$(GTK_WIMP_RCSRC_DIR)\gtkrc" $(INSTALL_DIR)\$(GTK_WIMP_RCDST_DIR) /d
937 !ENDIF
938         xcopy $(GLIB_DIR)\bin\libglib-2.0-0.dll $(INSTALL_DIR) /d
939         xcopy $(GLIB_DIR)\bin\libgobject-2.0-0.dll $(INSTALL_DIR) /d
940         xcopy $(GLIB_DIR)\bin\libgmodule-2.0-0.dll $(INSTALL_DIR) /d
941 !IFDEF ICONV_DIR
942         xcopy $(ICONV_DIR)\bin\iconv.dll $(INSTALL_DIR) /d
943 !ENDIF
944         xcopy $(GETTEXT_DIR)\bin\intl.dll $(INSTALL_DIR) /d
945 !IFDEF ZLIB_DIR
946         xcopy $(ZLIB_DIR)\zlib1.dll $(INSTALL_DIR) /d
947 !ENDIF
948 !IFDEF ADNS_DIR
949         xcopy $(ADNS_DIR)\adns_win32\LIB\adns_dll.dll $(INSTALL_DIR) /d
950 !ENDIF
951 !IFDEF PCRE_DIR
952         xcopy $(PCRE_DIR)\bin\pcre3.dll $(INSTALL_DIR) /d
953         xcopy $(PCRE_DIR)\man\cat3\pcrepattern.3.txt $(INSTALL_DIR) /d
954 !ENDIF
955 !IFDEF KFW_DIR
956         xcopy $(KFW_DIR)\bin\comerr32.dll $(INSTALL_DIR) /d
957         xcopy $(KFW_DIR)\bin\krb5_32.dll $(INSTALL_DIR) /d
958 !ENDIF
959 !IFDEF GNUTLS_DIR
960         xcopy $(GNUTLS_DIR)\bin\libgcrypt-11.dll $(INSTALL_DIR) /d
961         xcopy $(GNUTLS_DIR)\bin\libgnutls-13.dll $(INSTALL_DIR) /d
962         xcopy $(GNUTLS_DIR)\bin\libgnutls-extra-13.dll $(INSTALL_DIR) /d
963         xcopy $(GNUTLS_DIR)\bin\libgnutls-openssl-13.dll $(INSTALL_DIR) /d
964         xcopy $(GNUTLS_DIR)\bin\libgpg-error-0.dll $(INSTALL_DIR) /d
965         xcopy $(GNUTLS_DIR)\bin\libtasn1-3.dll $(INSTALL_DIR) /d
966 !ENDIF
967 !IFDEF LUA_DIR
968         xcopy "$(LUA_DIR)\lib\dll\lua5.1.dll" $(INSTALL_DIR) /d
969 !ENDIF
970 !IFDEF SMI_DIR
971         if not exist $(INSTALL_DIR)\snmp mkdir $(INSTALL_DIR)\snmp
972         if not exist $(INSTALL_DIR)\snmp\mibs mkdir $(INSTALL_DIR)\snmp\mibs
973         xcopy "$(SMI_DIR)\lib\smi.dll" $(INSTALL_DIR) /d
974         xcopy "$(SMI_DIR)\mibs\*" $(INSTALL_DIR)\snmp\mibs /d
975 !ENDIF
976
977 clean-deps:
978         rm -rf $(INSTALL_DIR)
979         cd plugins
980         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake clean-deps
981         cd ..
982