enable kerberos for windows for the win32 build
[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=-DHAVE_CONFIG_H $(LOCAL_CFLAGS) $(GLIB_CFLAGS) /I. /Iwiretap \
17         $(ZLIB_CFLAGS) /I$(PCAP_DIR)\include \
18         /I$(NET_SNMP_DIR)\include /I$(NET_SNMP_DIR)\win32 \
19         $(ADNS_CFLAGS) $(PCRE_CFLAGS) $(GNUTLS_CFLAGS) $(LUA_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 dftest_OBJECTS = $(dftest_SOURCES:.c=.obj)
34
35 dumpcap_OBJECTS = $(dumpcap_SOURCES:.c=.obj)
36
37 randpkt_OBJECTS = $(randpkt_SOURCES:.c=.obj)
38
39 command_line_OBJECTS = 
40
41 #setargv.obj
42
43 EXTRA_OBJECTS = \
44 #       strerror.obj    \
45         mkstemp.obj     \
46         strptime.obj
47
48 wireshark_LIBS= wiretap\wiretap-$(WTAP_VERSION).lib \
49         wsock32.lib user32.lib shell32.lib comctl32.lib \
50         $(NET_SNMP_DIR)\win32\lib\release\netsnmp.lib \
51 !IFDEF HHC_DIR
52         $(HHC_DIR)\lib\htmlhelp.lib \
53 !ENDIF
54 !IFDEF ENABLE_LIBWIRESHARK
55         epan\libwireshark.lib \
56 !ELSE
57         epan\dissectors\dissectors.lib \
58         epan\wireshark.lib \
59         epan\dfilter\dfilter.lib epan\ftypes\ftypes.lib \
60         $(ADNS_LIBS) \
61         $(PCRE_LIBS) \
62         $(ZLIB_LIBS) \
63         $(GNUTLS_LIBS) 
64 !ENDIF
65 #       $(PCAP_DIR)\lib\wpcap.lib
66
67 tshark_LIBS= wiretap\wiretap-$(WTAP_VERSION).lib \
68         wsock32.lib user32.lib \
69         $(GLIB_LIBS) \
70         $(NET_SNMP_DIR)\win32\lib\release\netsnmp.lib \
71 !IFDEF ENABLE_LIBWIRESHARK
72         epan\libwireshark.lib \
73 !ELSE
74         epan\dissectors\dissectors.lib \
75         epan\wireshark.lib \
76         epan\dfilter\dfilter.lib epan\ftypes\ftypes.lib \
77         $(ADNS_LIBS) \
78         $(PCRE_LIBS) \
79         $(ZLIB_LIBS) \
80         $(GNUTLS_LIBS)
81 !ENDIF
82
83 capinfos_LIBS= wiretap\wiretap-$(WTAP_VERSION).lib \
84         wsock32.lib user32.lib \
85         $(GLIB_LIBS)
86
87 editcap_LIBS= wiretap\wiretap-$(WTAP_VERSION).lib \
88         wsock32.lib user32.lib \
89         $(GLIB_LIBS)
90
91 mergecap_LIBS= wiretap\wiretap-$(WTAP_VERSION).lib \
92         wsock32.lib user32.lib \
93         $(GLIB_LIBS)
94
95 dumpcap_LIBS= wiretap\wiretap-$(WTAP_VERSION).lib \
96         wsock32.lib user32.lib \
97         $(GLIB_LIBS)
98
99 dftest_LIBS=  wiretap\wiretap-$(WTAP_VERSION).lib \
100         wsock32.lib user32.lib \
101         $(GLIB_LIBS) \
102         $(NET_SNMP_DIR)\win32\lib\release\netsnmp.lib \
103 !IFDEF ENABLE_LIBWIRESHARK
104         epan\libwireshark.lib \
105 !ELSE
106         epan\dissectors\dissectors.lib \
107         epan\wireshark.lib \
108         epan\dfilter\dfilter.lib epan\ftypes\ftypes.lib \
109         $(ADNS_LIBS) \
110         $(PCRE_LIBS) \
111         $(ZLIB_LIBS) \
112         $(GNUTLS_LIBS)  
113 !ENDIF
114
115 randpkt_LIBS= wiretap\wiretap-$(WTAP_VERSION).lib \
116         user32.lib \
117         $(GLIB_LIBS) \
118         $(NET_SNMP_DIR)\win32\lib\release\netsnmp.lib
119
120 EXECUTABLES=wireshark.exe wireshark-gtk2.exe tshark.exe \
121         capinfos.exe editcap.exe mergecap.exe text2pcap.exe randpkt.exe dumpcap.exe
122
123 RESOURCES=image\wireshark.res image\libwireshark.res image\tshark.res \
124         image\capinfos.res image\editcap.res image\mergecap.res \
125         image\text2pcap.res image\wiretap.res image\dumpcap.res
126
127 all: config.h tools image wiretap epan $(EXECUTABLES) $(RESOURCES) doc
128
129 packaging: all
130         cd packaging
131         cd nsis
132         nmake -f makefile.nmake
133         cd ..
134         cd ..
135
136 separate_packaging: all
137         cd packaging
138         cd nsis
139 !IFDEF GTK1_DIR
140         nmake -f makefile.nmake GTK1_ONLY="USE"
141 !ENDIF
142 !IFDEF GTK2_DIR
143         nmake -f makefile.nmake GTK2_ONLY="USE"
144 !ENDIF
145         cd ..
146         cd ..
147
148 $(RESOURCES): image
149
150 wiretap\wiretap-$(WTAP_VERSION).lib: wiretap
151
152 !IFNDEF GTK1_DIR
153 wireshark.exe   : 
154 !ELSE
155 wireshark.exe   : config.h svnversion.h $(wireshark_OBJECTS) $(command_line_OBJECTS) epan gtk image\wireshark.res wiretap\wiretap-$(WTAP_VERSION).lib gtk\libui.lib plugins
156         @echo Linking $@
157         $(LINK) @<<
158                 /OUT:wireshark.exe $(guiflags) $(guilibsdll) $(LDFLAGS) /SUBSYSTEM:windows $(wireshark_LIBS) $(GTK1_LIBS) gtk\libui.lib $(wireshark_OBJECTS) image\wireshark.res
159 <<
160 !ENDIF
161
162 !IFNDEF GTK2_DIR
163 wireshark-gtk2.exe      : 
164 !ELSE
165 wireshark-gtk2.exe      : config.h svnversion.h $(wireshark_OBJECTS) $(command_line_OBJECTS) epan gtk2 image\wireshark.res wiretap\wiretap-$(WTAP_VERSION).lib gtk2.tmp\libui.lib plugins
166         @echo Linking $@
167         $(LINK) @<<
168                 /OUT:wireshark-gtk2.exe $(guiflags) $(guilibsdll) $(LDFLAGS) /SUBSYSTEM:windows $(wireshark_LIBS) $(GTK2_LIBS) gtk2.tmp\libui.lib $(wireshark_OBJECTS) image\wireshark.res
169 <<
170 !ENDIF
171
172 tshark.exe      : config.h svnversion.h $(tshark_OBJECTS) $(command_line_OBJECTS) epan image\tshark.res wiretap\wiretap-$(WTAP_VERSION).lib plugins
173         @echo Linking $@
174         $(LINK) @<<
175                 /OUT:tshark.exe $(conflags) $(conlibsdll) $(LDFLAGS) /SUBSYSTEM:console $(tshark_LIBS) $(tshark_OBJECTS) $(command_line_OBJECTS) image\tshark.res
176 <<
177
178 capinfos.exe    : config.h capinfos.obj getopt.obj $(command_line_OBJECTS) wiretap\wiretap-$(WTAP_VERSION).lib image\capinfos.res
179         @echo Linking $@
180         $(LINK) @<<
181                 /OUT:capinfos.exe $(conflags) $(conlibsdll) $(LDFLAGS) /SUBSYSTEM:console capinfos.obj getopt.obj $(command_line_OBJECTS) $(capinfos_LIBS) image\capinfos.res
182 <<
183
184 editcap.exe     : config.h editcap.obj getopt.obj strptime.obj epan\crypt-md5.obj wiretap\wiretap-$(WTAP_VERSION).lib image\editcap.res
185         @echo Linking $@
186         $(LINK) @<<
187                 /OUT:editcap.exe $(conflags) $(conlibsdll) $(LDFLAGS) /SUBSYSTEM:console editcap.obj getopt.obj strptime.obj epan\crypt-md5.obj $(command_line_OBJECTS) $(editcap_LIBS) image\editcap.res
188 <<
189
190 mergecap.exe    : config.h svnversion.h mergecap.obj merge.obj getopt.obj $(command_line_OBJECTS) wiretap\wiretap-$(WTAP_VERSION).lib image\mergecap.res
191         @echo Linking $@
192         $(LINK) @<<
193                 /OUT:mergecap.exe $(conflags) $(conlibsdll) $(LDFLAGS) /SUBSYSTEM:console mergecap.obj merge.obj getopt.obj $(command_line_OBJECTS) $(mergecap_LIBS) image\mergecap.res
194 <<
195
196 text2pcap.exe   : config.h text2pcap.obj text2pcap-scanner.obj getopt.obj strptime.obj $(command_line_OBJECTS) image\text2pcap.res
197         @echo Linking $@
198         $(LINK) @<<
199                 /OUT:text2pcap.exe $(conflags) $(conlibsdll) $(LDFLAGS) /SUBSYSTEM:console text2pcap.obj text2pcap-scanner.obj getopt.obj strptime.obj $(command_line_OBJECTS) image\text2pcap.res
200 <<
201
202 dftest.exe      : $(dftest_OBJECTS) epan
203         @echo Linking $@
204         $(LINK) @<<
205                 /OUT:dftest.exe $(conflags) $(conlibsdll) $(LDFLAGS) /SUBSYSTEM:console $(dftest_LIBS) $(dftest_OBJECTS)
206 <<
207
208 randpkt.exe     : $(randpkt_OBJECTS) $(command_line_OBJECTS)
209         @echo Linking $@
210         $(LINK) @<<
211                 /OUT:randpkt.exe $(conflags) $(conlibsdll) $(LDFLAGS) /SUBSYSTEM:console $(randpkt_LIBS) $(randpkt_OBJECTS) $(command_line_OBJECTS)
212 <<
213
214 dumpcap.exe     : config.h svnversion.h $(dumpcap_OBJECTS) getopt.obj mkstemp.obj $(command_line_OBJECTS) wiretap\wiretap-$(WTAP_VERSION).lib image\dumpcap.res 
215         @echo Linking $@
216         $(LINK) @<<
217                 /OUT:dumpcap.exe $(conflags) $(conlibsdll) $(LDFLAGS) /SUBSYSTEM:console $(dumpcap_LIBS) $(dumpcap_OBJECTS) getopt.obj mkstemp.obj $(command_line_OBJECTS) image\dumpcap.res
218 <<
219
220
221 config.h        : config.h.win32 config.nmake
222         sed -e s/@VERSION@/$(VERSION)/ \
223             -e "s/@HAVE_GNU_ADNS@/$(ADNS_CONFIG)/" \
224             -e "s/@HAVE_PCRE@/$(PCRE_CONFIG)/" \
225             -e "s/@HAVE_KFW@/$(KFW_CONFIG)/" \
226             -e "s/@HAVE_NETTLE@/$(NETTLE_CONFIG)/" \
227             -e "s/@HAVE_LIBZ@/$(ZLIB_CONFIG)/" \
228             -e "s/@HAVE_LIBPCAP@/$(WINPCAP_CONFIG)/" \
229             -e "s/@HAVE_PCAP_FINDALLDEVS@/$(PCAP_FINDALLDEVS_CONFIG)/" \
230             -e "s/@HAVE_PCAP_DATALINK_NAME_TO_VAL@/$(PCAP_DATALINK_NAME_TO_VAL_CONFIG)/" \
231             -e "s/@HAVE_PCAP_DATALINK_VAL_TO_NAME@/$(PCAP_DATALINK_VAL_TO_NAME_CONFIG)/" \
232             -e "s/@HAVE_PCAP_BREAKLOOP@/$(PCAP_BREAKLOOP_CONFIG)/" \
233             -e "s/@HAVE_LIBWIRESHARKDLL@/$(LIBWIRESHARK_CONFIG)/" \
234             -e "s/@WPCAP_CONSTIFIED@/$(WPCAP_CONSTIFIED_CONFIG)/" \
235             -e "s/@HAVE_GNUTLS@/$(GNUTLS_CONFIG)/" \
236             -e "s/@HAVE_LUA@/$(LUA_CONFIG)/" \
237             -e "s/@HAVE_LUA_5_1@/$(LUA_VERSION)/" \
238             < config.h.win32 > $@
239
240 ps.c    : rdps.exe print.ps
241         rdps print.ps ps.c
242
243
244 #
245 # Build the version string
246 #
247 svnversion.h:
248         $(PERL) make-version.pl
249
250 #
251 # Build the short version of the authors file for the about dialog
252 #
253 AUTHORS-SHORT: AUTHORS make-authors-short.pl
254         $(PERL) perlnoutf.pl make-authors-short.pl < AUTHORS > AUTHORS-SHORT
255
256 #
257 # Build the short version of the authors file with formatting codes for
258 # the man page
259 #
260 AUTHORS-SHORT-FORMAT: AUTHORS-SHORT make-authors-format.pl
261     $(PERL) perlnoutf.pl make-authors-format.pl < AUTHORS-SHORT > AUTHORS-SHORT-FORMAT
262
263 #
264 # Build "tshark-tap-register.c", which contains a function 
265 # "register_all_tap_listeners()"
266 # that calls the register routines for all tehtereal tap listeners.
267 #
268 # We do this by grepping through sources.
269 #
270 # Formatting conventions:  The name of the tap_listener_register_* 
271 # routines must start in column zero, or must be preceded only by 
272 # "void " starting in column zero, and must not be inside #if.
273 #
274 # The first argument is the name of the file to write.
275 # The second argument is the directory in which the source files live.
276 # All subsequent arguments are the files to scan.
277 #
278 tshark-tap-register.c: $(TSHARK_TAP_SRC) make-tapreg-dotc
279         @echo Making tshark-tap-register.c
280         @$(SH) make-tapreg-dotc tshark-tap-register.c . $(TSHARK_TAP_SRC)
281
282 text2pcap-scanner.c : text2pcap-scanner.l
283         $(LEX) -otext2pcap-scanner.c text2pcap-scanner.l
284
285 gtk2_distclean:
286         rm -f gtk2.tmp/*.*
287         if exist gtk2.tmp rmdir gtk2.tmp
288
289 clean: gtk2_distclean
290         rm -f $(wireshark_OBJECTS) $(tshark_OBJECTS) $(EXTRA_OBJECTS) \
291                 $(EXECUTABLES) $(PDB_FILE) \
292                 capinfos.obj editcap.obj mergecap.obj text2pcap.obj getopt.obj\
293                 text2pcap-scanner.obj text2pcap-scanner.c rdps.obj \
294                 rdps.pdb rdps.exe rdps.ilk config.h ps.c AUTHORS-SHORT \
295                 AUTHORS-SHORT-FORMAT \
296                 dftest.obj dftest.exe randpkt.obj randpkt.ext dumpcap.obj \
297                 doxygen.cfg \
298                 $(RESOURCES) libwireshark.dll wiretap-$(WTAP_VERSION).dll
299         cd asn1
300         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake clean
301         cd ..
302         cd wiretap
303         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake clean
304         cd ../gtk
305         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake clean
306         cd ../epan
307         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake clean
308         cd ../plugins
309         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake clean
310         cd ../tools
311         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake clean
312         cd ../image
313         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake clean
314         cd ../doc
315         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake clean
316         cd ../help
317         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake clean
318         cd ../packaging/nsis
319         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake clean
320         cd ../..
321
322 # "distclean" removes all files not part of the distribution.
323 # It does not remove generated files that are part of the distribution.
324 distclean: clean gtk2_distclean
325         rm -f config.h $(BUILT_SOURCES)
326         cd wiretap
327         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake distclean
328         cd ../gtk
329         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake distclean
330         cd ../epan
331         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake distclean
332         cd ../plugins
333         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake distclean
334         cd ../tools
335         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake distclean
336         cd ../image
337         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake distclean
338         cd ../doc
339         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake distclean
340         cd ../help
341         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake distclean
342         cd ../packaging/nsis
343         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake distclean
344         cd ../..
345
346 # Make "maintainer-clean" only if you would like to remove ALL generated
347 # files.
348 # Be sure to have python and perl installed to regenerate them.
349 maintainer-clean: distclean
350         rm -f $(GENERATED_FILES)
351         cd wiretap
352         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake maintainer-clean
353         cd ../gtk
354         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake maintainer-clean
355         cd ../epan
356         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake maintainer-clean
357         cd ../plugins
358         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake maintainer-clean
359         cd ../tools
360         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake maintainer-clean
361         cd ../image
362         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake maintainer-clean
363         cd ../doc
364         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake maintainer-clean
365         cd ../help
366         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake maintainer-clean
367         cd ../packaging/nsis
368         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake maintainer-clean
369         cd ../..
370
371 tools::
372         cd tools
373         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake
374         cd ..
375
376 image::
377         cd image
378         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake
379         cd ..
380
381 wiretap::
382         cd wiretap
383         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake
384         cd ..
385
386 gtk:: help config.h svnversion.h AUTHORS-SHORT doxygen
387         cd gtk
388         $(MAKE) /$(MAKEFLAGS) /f Makefile.nmake GTK_CFLAGS="$(GTK1_CFLAGS)" GTK_LIBS="$(GTK1_LIBS)" libui.lib
389         cd ..
390
391 # copy all required files to gtk2.tmp (but only when newer than existing) and compile in that dir
392 gtk2:: help config.h svnversion.h AUTHORS-SHORT
393         if not exist gtk2.tmp mkdir gtk2.tmp
394         cd gtk
395         set copycmd=/y
396         xcopy Makefile.* ..\gtk2.tmp /d
397         xcopy *.c        ..\gtk2.tmp /d
398         xcopy *.h        ..\gtk2.tmp /d
399         cd ..\gtk2.tmp
400         $(MAKE) /$(MAKEFLAGS) /f Makefile.nmake GTK_CFLAGS="$(GTK2_CFLAGS)" GTK_LIBS="$(GTK2_LIBS)" libui.lib
401         cd ..
402
403 epan:: $(RESOURCES) $(BUILT_SOURCES) doxygen
404         cd epan
405         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake
406         cd ..
407
408 plugins::
409         cd plugins
410         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake
411         cd ..
412
413 doc::
414         cd doc
415         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake
416         cd ..
417
418 help::
419         cd help
420         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake
421         cd ..
422
423 doxygen.cfg: config.nmake doxygen.cfg.in
424         sed -e s/@VERSION@/$(VERSION)/ \
425             < doxygen.cfg.in > $@
426
427 doxygen-run:
428 !IFDEF DOXYGEN
429         $(DOXYGEN) doxygen.cfg
430 !ENDIF
431
432 doxygen: doxygen.cfg doxygen-run
433
434 ################################################################################
435 # Prepare build environment by downloading and installing required libraries
436 ################################################################################
437
438 # The required tools to build Ethereal.
439 #
440 # The 'find' tool is available both in \WINNT\System32 and in cygwin's /usr/bin.
441 # We only need the cygwin version (for some shell scripts).
442 # In the PATH, System32 is before cygwin's dir, so explicitly check for /usr/bin/find.
443 REQUIRED_TOOLS=\
444         $(CC) \
445         $(LINK) \
446         nmake \
447         $(SH)   \
448         $(YACC) \
449         $(LEX)  \
450         env     \
451         grep    \
452         /usr/bin/find   \
453         $(PERL) \
454         $(PYTHON)       \
455         sed     \
456         unzip   \
457         wget
458
459 verify_tools:
460         @$(SH) tools\win32-setup.sh --appverify $(REQUIRED_TOOLS)
461
462 # Download and install all the required libraries into WIRESHARK_LIBS.
463 # If you used this setup target before, consider doing a clean_setup.
464 setup: verify_tools
465 !IF "$(GTK2_INST_VERSION)" == "2.8"
466         @$(SH) tools\win32-setup.sh --download "$(WIRESHARK_LIBS)" \
467                 glib gtk2.8/glib-2.8.4-20051212.zip
468         @$(SH) tools\win32-setup.sh --download "$(WIRESHARK_LIBS)" \
469                 glib gtk2.8/glib-dev-2.8.4-20051212.zip
470 !ELSEIF "$(GTK2_INST_VERSION)" == "2.6"
471         @$(SH) tools\win32-setup.sh --download "$(WIRESHARK_LIBS)" \
472                 glib gtk2.6/glib-2.6.6.zip
473         @$(SH) tools\win32-setup.sh --download "$(WIRESHARK_LIBS)" \
474                 glib gtk2.6/glib-dev-2.6.6.zip
475 !ELSEIF "$(GTK2_INST_VERSION)" == "2.4"
476         @$(SH) tools\win32-setup.sh --download "$(WIRESHARK_LIBS)" \
477                 glib gtk2.4/glib-2.4.7.zip
478         @$(SH) tools\win32-setup.sh --download "$(WIRESHARK_LIBS)" \
479                 glib gtk2.4/glib-dev-2.4.7.zip
480 !ELSE
481         @$(SH) tools\win32-setup.sh --download "$(WIRESHARK_LIBS)" \
482                 glib glib-2.2.3-20040116.zip
483         @$(SH) tools\win32-setup.sh --download "$(WIRESHARK_LIBS)" \
484                 glib glib-dev-2.2.3-20040116.zip
485 !ENDIF
486 !IFDEF GTK1_DIR
487         @$(SH) tools\win32-setup.sh --download "$(WIRESHARK_LIBS)" \
488                 gtk+ gtk+-1.3.0-20030717.zip
489         @$(SH) tools\win32-setup.sh --download "$(WIRESHARK_LIBS)" \
490                 gtk+ gtk+-dev-1.3.0-20030115.zip
491 !ENDIF
492         @$(SH) tools\win32-setup.sh --download "$(WIRESHARK_LIBS)" \
493                 libiconv-1.9.1.bin.woe32 libiconv-1.9.1.bin.woe32.zip
494         @$(SH) tools\win32-setup.sh --download "$(WIRESHARK_LIBS)" \
495                 gettext-runtime-0.13.1 gettext-runtime-0.13.1.zip
496 !IFDEF NET_SNMP_DIR
497         @$(SH) tools\win32-setup.sh --download "$(WIRESHARK_LIBS)" \
498                 . net-snmp-5.3.1.zip
499 !ENDIF
500 !IFDEF KFW_DIR
501         @$(SH) tools\win32-setup.sh --download "$(WIRESHARK_LIBS)" \
502                 kfw-2.5 kfw-2.5.zip
503 !ENDIF
504 !IFDEF PCAP_DIR
505         @$(SH) tools\win32-setup.sh --download "$(WIRESHARK_LIBS)" \
506                 . WpdPack_3_1.zip
507 !ENDIF
508 !IFDEF ADNS_DIR
509         @$(SH) tools\win32-setup.sh --download "$(WIRESHARK_LIBS)" \
510                 . adns-1.0-win32-05.zip
511 !ENDIF
512 !IFDEF PCRE_DIR
513         @$(SH) tools\win32-setup.sh --download "$(WIRESHARK_LIBS)" \
514                 pcre-6.4 pcre-6.4-bin.zip
515         @$(SH) tools\win32-setup.sh --download "$(WIRESHARK_LIBS)" \
516                 pcre-6.4 pcre-6.4-lib.zip
517 !ENDIF
518 !IFDEF ZLIB_DIR
519         @$(SH) tools\win32-setup.sh --download "$(WIRESHARK_LIBS)" \
520                 zlib123-dll zlib123-dll.zip
521 !ENDIF
522 !IFDEF LUA_DIR
523         @$(SH) tools\win32-setup.sh --download "$(WIRESHARK_LIBS)" \
524                 . lua5_1_vc6.zip
525 !ENDIF
526 !IFDEF GNUTLS_DIR
527         @$(SH) tools\win32-setup.sh --download "$(WIRESHARK_LIBS)" \
528                 . gnutls-1.5.0.zip
529 !ENDIF
530 !IFDEF GTK2_DIR
531 !IF "$(GTK2_INST_VERSION)" == "2.8"
532         @$(SH) tools\win32-setup.sh --download "$(WIRESHARK_LIBS)" \
533                 gtk2 gtk2.8/gtk+-2.8.9.zip
534         @$(SH) tools\win32-setup.sh --download "$(WIRESHARK_LIBS)" \
535                 gtk2 gtk2.8/gtk+-dev-2.8.9.zip
536         @$(SH) tools\win32-setup.sh --download "$(WIRESHARK_LIBS)" \
537                 gtk2 gtk2.8/cairo-1.0.2.zip
538         @$(SH) tools\win32-setup.sh --download "$(WIRESHARK_LIBS)" \
539                 gtk2 gtk2.8/cairo-dev-1.0.2.zip
540         @$(SH) tools\win32-setup.sh --download "$(WIRESHARK_LIBS)" \
541                 gtk2 gtk2.8/atk-1.10.3.zip
542         @$(SH) tools\win32-setup.sh --download "$(WIRESHARK_LIBS)" \
543                 gtk2 gtk2.8/atk-dev-1.10.3.zip
544         @$(SH) tools\win32-setup.sh --download "$(WIRESHARK_LIBS)" \
545                 gtk2 gtk2.8/libpng-1.2.8-bin.zip
546 !ELSEIF "$(GTK2_INST_VERSION)" == "2.6"
547         @$(SH) tools\win32-setup.sh --download "$(WIRESHARK_LIBS)" \
548                 gtk2 gtk2.6/gtk+-2.6.9.zip
549         @$(SH) tools\win32-setup.sh --download "$(WIRESHARK_LIBS)" \
550                 gtk2 gtk2.6/gtk+-dev-2.6.9.zip
551         @$(SH) tools\win32-setup.sh --download "$(WIRESHARK_LIBS)" \
552                 gtk2 gtk2.6/atk-1.9.0.zip
553         @$(SH) tools\win32-setup.sh --download "$(WIRESHARK_LIBS)" \
554                 gtk2 gtk2.6/atk-dev-1.9.0.zip
555 !ELSEIF "$(GTK2_INST_VERSION)" == "2.4"
556         @$(SH) tools\win32-setup.sh --download "$(WIRESHARK_LIBS)" \
557                 gtk2 gtk2.4/gtk+-2.4.14.zip
558         @$(SH) tools\win32-setup.sh --download "$(WIRESHARK_LIBS)" \
559                 gtk2 gtk2.4/gtk+-dev-2.4.14.zip
560         @$(SH) tools\win32-setup.sh --download "$(WIRESHARK_LIBS)" \
561                 gtk2 gtk2.4/atk-1.6.0.zip
562         @$(SH) tools\win32-setup.sh --download "$(WIRESHARK_LIBS)" \
563                 gtk2 gtk2.4/atk-dev-1.6.0.zip
564 !ELSE
565         @$(SH) tools\win32-setup.sh --download "$(WIRESHARK_LIBS)" \
566                 gtk2 gtk2/gtk+-2.2.4-20040124.zip
567         @$(SH) tools\win32-setup.sh --download "$(WIRESHARK_LIBS)" \
568                 gtk2 gtk2/gtk+-dev-2.2.4-20040124.zip
569         @$(SH) tools\win32-setup.sh --download "$(WIRESHARK_LIBS)" \
570                 gtk2 gtk2/atk-1.4.0.zip
571         @$(SH) tools\win32-setup.sh --download "$(WIRESHARK_LIBS)" \
572                 gtk2 gtk2/atk-dev-1.4.0.zip
573 !ENDIF
574 !IF "$(PANGO_INST_VERSION)" == "1.10"
575         @$(SH) tools\win32-setup.sh --download "$(WIRESHARK_LIBS)" \
576                 gtk2 gtk2.8/pango-1.10.1.zip
577         @$(SH) tools\win32-setup.sh --download "$(WIRESHARK_LIBS)" \
578                 gtk2 gtk2.8/pango-dev-1.10.1.zip
579 !ELSEIF "$(PANGO_INST_VERSION)" == "1.8"
580         @$(SH) tools\win32-setup.sh --download "$(WIRESHARK_LIBS)" \
581                 gtk2 gtk2.6/pango-1.8.2.zip
582         @$(SH) tools\win32-setup.sh --download "$(WIRESHARK_LIBS)" \
583                 gtk2 gtk2.6/pango-dev-1.8.2.zip
584 !ELSEIF "$(PANGO_INST_VERSION)" == "1.4"
585         @$(SH) tools\win32-setup.sh --download "$(WIRESHARK_LIBS)" \
586                 gtk2 gtk2.4/pango-1.4.1.zip
587         @$(SH) tools\win32-setup.sh --download "$(WIRESHARK_LIBS)" \
588                 gtk2 gtk2.4/pango-dev-1.4.1.zip
589 !ELSE
590         @$(SH) tools\win32-setup.sh --download "$(WIRESHARK_LIBS)" \
591                 gtk2 gtk2/pango-1.2.5-20040124.zip
592         @$(SH) tools\win32-setup.sh --download "$(WIRESHARK_LIBS)" \
593                 gtk2 gtk2/pango-dev-1.2.5-20040124.zip
594 !ENDIF
595 !ENDIF
596 !IFDEF GTK_WIMP_DIR
597         @$(SH) tools\win32-setup.sh --download "$(WIRESHARK_LIBS)" \
598                 gtk-wimp gtk-wimp/gtk-wimp-0.7.0-bin.zip
599 !ENDIF
600         @echo.
601         @echo Wireshark is ready to build.
602
603 # Cleanup files installed by the setup target. It will not remove the 
604 # downloaded zip files.
605 clean_setup:
606     rm -r -f $(WIRESHARK_LIBS)/glib
607     rm -r -f $(WIRESHARK_LIBS)/gtk+
608     rm -r -f $(WIRESHARK_LIBS)/libiconv-1.9.1.bin.woe32
609     rm -r -f $(WIRESHARK_LIBS)/gettext-runtime-0.13.1
610     rm -r -f $(WIRESHARK_LIBS)/zlib123-dll
611     rm -r -f $(WIRESHARK_LIBS)/gtk2
612     rm -r -f $(WIRESHARK_LIBS)/gtk-wimp
613
614 ################################################################################
615 # Prepare the source tree for running (t)wireshark directly from there.
616 ################################################################################
617
618 # "install-deps" will copy all dlls needed to run (t)wireshark
619 # to the source tree, so you can run (t)wireshark directly from there.
620 # Note that the gtk2 version of wireshark is called wireshark-gtk2.exe
621
622 install-deps: clean-deps install-gtk1-deps install-gtk2-deps
623         cd plugins
624         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake install-plugins
625         cd ..
626
627 install-gtk2-deps: install-required-deps
628 !IFDEF GTK2_DIR
629         set copycmd=/y
630         xcopy $(GTK2_DIR)\bin\libgdk-win32-2.0-0.dll . /d
631         xcopy $(GTK2_DIR)\bin\libgdk_pixbuf-2.0-0.dll . /d
632         xcopy $(GTK2_DIR)\bin\libgtk-win32-2.0-0.dll . /d
633         xcopy $(GTK2_DIR)\bin\libatk-1.0-0.dll . /d
634         xcopy $(GTK2_DIR)\bin\libpango-1.0-0.dll . /d
635         xcopy $(GTK2_DIR)\bin\libpangowin32-1.0-0.dll . /d
636         mkdir etc
637         mkdir etc\gtk-2.0
638         mkdir etc\pango
639         mkdir lib
640         mkdir lib\gtk-2.0
641         mkdir lib\gtk-2.0\$(GTK2_LIB_DIR)
642         mkdir lib\gtk-2.0\$(GTK2_LIB_DIR)\loaders
643         mkdir lib\gtk-2.0\$(GTK2_LIB_DIR)\immodules
644         mkdir lib\pango
645         mkdir lib\pango\$(PANGO_LIB_DIR)
646         mkdir lib\pango\$(PANGO_LIB_DIR)\modules
647         xcopy $(GTK2_DIR)\etc\gtk-2.0\*.* etc\gtk-2.0 /d
648         xcopy $(GTK2_DIR)\etc\pango\pango.* etc\pango /d
649         xcopy $(GTK2_DIR)\lib\gtk-2.0\$(GTK2_LIB_DIR)\loaders\libpixbufloader-*.dll lib\gtk-2.0\$(GTK2_LIB_DIR)\loaders /d
650         xcopy $(GTK2_DIR)\lib\gtk-2.0\$(GTK2_LIB_DIR)\immodules\im-*.dll lib\gtk-2.0\$(GTK2_LIB_DIR)\immodules /d
651         xcopy $(GTK2_DIR)\lib\pango\$(PANGO_LIB_DIR)\modules\pango-*.dll lib\pango\$(PANGO_LIB_DIR)\modules /d
652 !IFDEF NEED_LIBPNG_DLL
653         xcopy $(GTK2_DIR)\bin\libpng13.dll . /d
654 !ENDIF
655 !IFDEF NEED_CAIRO_DLL
656         xcopy $(GTK2_DIR)\bin\libcairo-2.dll . /d
657         xcopy $(GTK2_DIR)\bin\libpangocairo-1.0-0.dll . /d
658 !ENDIF
659 !ENDIF
660
661 install-gtk1-deps: install-required-deps
662 !IFDEF GTK1_DIR
663         set copycmd=/y
664         xcopy $(GTK1_DIR)\lib\libgtk-0.dll . /d
665         xcopy $(GTK1_DIR)\lib\libgdk-0.dll . /d
666 !ENDIF
667
668 install-required-deps:
669         set copycmd=/y
670         xcopy wiretap\wiretap-$(WTAP_VERSION).dll . /d
671 !IFDEF ENABLE_LIBWIRESHARK
672         xcopy epan\libwireshark.dll . /d
673 !ENDIF
674         xcopy $(GLIB_DIR)\bin\libglib-2.0-0.dll . /d
675         xcopy $(GLIB_DIR)\bin\libgmodule-2.0-0.dll . /d
676         xcopy $(GLIB_DIR)\bin\libgobject-2.0-0.dll . /d
677         xcopy $(ICONV_DIR)\bin\iconv.dll . /d
678         xcopy $(GETTEXT_DIR)\bin\intl.dll . /d
679 !IFDEF ZLIB_DIR
680         xcopy $(ZLIB_DIR)\zlib1.dll . /d
681 !ENDIF
682 !IFDEF ADNS_DIR
683         xcopy $(ADNS_DIR)\adns_win32\LIB\adns_dll.dll . /d
684 !ENDIF
685 !IFDEF PCRE_DIR
686         xcopy $(PCRE_DIR)\bin\pcre.dll . /d
687 !ENDIF
688 !IFDEF KFW_DIR
689         xcopy $(KFW_DIR)\bin\comerr32.dll . /d
690         xcopy $(KFW_DIR)\bin\krb5_32.dll . /d
691 !ENDIF
692 !IFDEF GNUTLS_DIR
693         xcopy $(GNUTLS_DIR)\bin\libgcrypt-11.dll . /d
694         xcopy $(GNUTLS_DIR)\bin\libgnutls-14.dll . /d
695         xcopy $(GNUTLS_DIR)\bin\libgnutls-extra-14.dll . /d
696         xcopy $(GNUTLS_DIR)\bin\libgnutls-openssl-14.dll . /d
697         xcopy $(GNUTLS_DIR)\bin\libgpg-error-0.dll . /d
698         xcopy $(GNUTLS_DIR)\bin\libtasn1-3.dll . /d
699 !ENDIF
700
701 clean-deps:
702         rm -f *.dll
703         rm -rf etc
704         rm -rf lib
705         cd plugins
706         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake clean-deps
707         cd ..
708