Fix compilation under Windows. Allocate our hash buffer dynamically so
[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 # We "Deploy using XCopy," which is described at
7 # http://msdn.microsoft.com/en-us/library/ms235291.aspx
8
9 include config.nmake
10 include <win32.mak>
11
12 ############### no need to modify below this line #########
13
14 CC = cl
15 LINK= link
16 BSCMAKE= bscmake
17
18 WIN_SETUP=tools\$(WIRESHARK_TARGET_PLATFORM)-setup.sh
19
20 # -------------
21 # Checking  that the Wireshark Libraries are up-to-date:
22 #  1. win??-setup.sh --checktag is invoked during nmake "preprocessing".
23 #     If an error status is returned (ie: the libraries are not up-to-date)
24 #      then CHECK_TAG is defined as a non-null string.
25 #  2. The $(LIBS_CHECK) target is invoked during the nmake:
26 #     If $(CHECK_TAG) is non-null, then a "libraries not up to date" exit will occur.
27 #     If $(CHECK_TAG) is null, but either config.nmake or Makefile.nmake
28 #      are newer than the $(LIBS_CHECK) target, then a detailed verification
29 #      as to the required library package files will be made.
30 #    
31 LIBS_CHECK=_libs_check_
32 !IF [$(SH) $(WIN_SETUP) --checktag "$(WIRESHARK_LIBS)"] != 0
33 CHECK_TAG=_check_tag_
34 !ELSE
35 CHECK_TAG=
36 !ENDIF
37 # -------------
38
39 LDFLAGS = /NOLOGO /INCREMENTAL:no $(LOCAL_LDFLAGS)
40
41 # We use GENERATED_CFLAGS to get around flex's non-LLP64-compliant output
42 GENERATED_CFLAGS=-DHAVE_CONFIG_H $(LOCAL_CFLAGS) $(GLIB_CFLAGS) /I. /Iwiretap \
43         $(ZLIB_CFLAGS) /I$(PCAP_DIR)\include \
44         $(AIRPCAP_CFLAGS) \
45         $(C_ARES_CFLAGS) $(ADNS_CFLAGS) $(PCRE_CFLAGS) $(GNUTLS_CFLAGS) \
46         $(LUA_CFLAGS) $(SMI_CFLAGS) $(GEOIP_CFLAGS) \
47         -D_U_="" -D_NEED_VAR_IMPORT_
48 CFLAGS=-WX $(GENERATED_CFLAGS)
49
50 CVARSDLL=-DWIN32 -DNULL=0 -D_MT -D_DLL
51
52 .c.obj::
53         $(CC) $(CVARSDLL) $(CFLAGS) -Fd.\ -c $<
54
55 PLATFORM_SRC = capture-wpcap.c capture_wpcap_packet.c
56
57 WTAP_PLUGIN_SOURCES = \
58        epan/plugins.c \
59        epan/report_err.c \
60        epan/filesystem.c
61
62 include Makefile.common
63
64 wireshark_OBJECTS = $(wireshark_SOURCES:.c=.obj)
65 tshark_OBJECTS = $(tshark_SOURCES:.c=.obj)
66 rawshark_OBJECTS = $(rawshark_SOURCES:.c=.obj)
67 ###text2pcap_OBJECTS = $(text2pcap_SOURCES:.c=.obj)
68 ###mergecap_OBJECTS = $(mergecap_SOURCES:.c=.obj)
69 editcap_OBJECTS = $(editcap_SOURCES:.c=.obj)
70 capinfos_OBJECTS = $(capinfos_SOURCES:.c=.obj)
71 dftest_OBJECTS = $(dftest_SOURCES:.c=.obj)
72 dumpcap_OBJECTS = $(dumpcap_SOURCES:.c=.obj)
73 randpkt_OBJECTS = $(randpkt_SOURCES:.c=.obj)
74
75 EXTRA_OBJECTS = \
76         wsgetopt.obj    \
77         inet_ntop.obj   \
78         inet_pton.obj   \
79         strptime.obj
80
81 wireshark_LIBS= wiretap\wiretap-$(WTAP_VERSION).lib \
82         wsock32.lib user32.lib shell32.lib comctl32.lib \
83         $(HHC_LIBS) \
84         wsutil\libwsutil.lib \
85         $(GNUTLS_LIBS) \
86 !IFDEF ENABLE_LIBWIRESHARK
87         epan\libwireshark.lib \
88 !ELSE
89         epan\dissectors\dissectors.lib \
90         epan\wireshark.lib \
91         epan\crypt\airpdcap.lib \
92         epan\dfilter\dfilter.lib \
93         epan\ftypes\ftypes.lib \
94         $(C_ARES_LIBS) \
95         $(ADNS_LIBS) \
96         $(PCRE_LIBS) \
97         $(ZLIB_LIBS)
98 !ENDIF
99
100 tshark_LIBS= wiretap\wiretap-$(WTAP_VERSION).lib \
101         wsock32.lib user32.lib \
102         $(GLIB_LIBS) \
103         wsutil\libwsutil.lib \
104         $(GNUTLS_LIBS) \
105 !IFDEF ENABLE_LIBWIRESHARK
106         epan\libwireshark.lib \
107 !ELSE
108         epan\dissectors\dissectors.lib \
109         epan\wireshark.lib \
110         epan\crypt\airpdcap.lib \
111         epan\dfilter\dfilter.lib \
112         epan\ftypes\ftypes.lib \
113         $(C_ARES_LIBS) \
114         $(ADNS_LIBS) \
115         $(PCRE_LIBS) \
116         $(ZLIB_LIBS)
117 !ENDIF
118
119 rawshark_LIBS= wiretap\wiretap-$(WTAP_VERSION).lib \
120         wsock32.lib user32.lib \
121         $(GLIB_LIBS) \
122         wsutil\libwsutil.lib \
123         $(GNUTLS_LIBS) \
124 !IFDEF ENABLE_LIBWIRESHARK
125         epan\libwireshark.lib \
126 !ELSE
127         epan\dissectors\dissectors.lib \
128         epan\wireshark.lib \
129         epan\crypt\airpdcap.lib \
130         epan\dfilter\dfilter.lib \
131         epan\ftypes\ftypes.lib \
132         $(C_ARES_LIBS) \
133         $(ADNS_LIBS) \
134         $(PCRE_LIBS) \
135         $(ZLIB_LIBS)
136 !ENDIF
137
138 capinfos_LIBS= wiretap\wiretap-$(WTAP_VERSION).lib \
139         wsock32.lib user32.lib shell32.lib \
140         wsutil\libwsutil.lib \
141         $(GLIB_LIBS) \
142         $(GCRYPT_LIBS)
143
144 editcap_LIBS= wiretap\wiretap-$(WTAP_VERSION).lib \
145         wsock32.lib user32.lib shell32.lib \
146         wsutil\libwsutil.lib \
147         $(GLIB_LIBS)
148
149 mergecap_LIBS= wiretap\wiretap-$(WTAP_VERSION).lib \
150         wsock32.lib user32.lib \
151         wsutil\libwsutil.lib \
152         $(GLIB_LIBS)
153
154 text2pcap_LIBS= wiretap\wiretap-$(WTAP_VERSION).lib \
155         wsock32.lib user32.lib \
156         wsutil\libwsutil.lib \
157         $(GLIB_LIBS)
158
159 dumpcap_LIBS= wiretap\wiretap-$(WTAP_VERSION).lib \
160         wsock32.lib user32.lib \
161         wsutil\libwsutil.lib \
162         $(GLIB_LIBS) \
163         $(GTHREAD_LIBS) \
164         $(GNUTLS_LIBS)
165
166 dftest_LIBS=  wiretap\wiretap-$(WTAP_VERSION).lib \
167         wsock32.lib user32.lib \
168         $(GLIB_LIBS) \
169         wsutil\libwsutil.lib \
170         $(GNUTLS_LIBS) \
171 !IFDEF ENABLE_LIBWIRESHARK
172         epan\libwireshark.lib \
173 !ELSE
174         epan\dissectors\dissectors.lib \
175         epan\wireshark.lib \
176         epan\dfilter\dfilter.lib epan\ftypes\ftypes.lib \
177         $(C_ARES_LIBS) \
178         $(ADNS_LIBS) \
179         $(PCRE_LIBS) \
180         $(ZLIB_LIBS) \
181         $(SMI_LIBS)
182 !ENDIF
183
184 randpkt_LIBS= wiretap\wiretap-$(WTAP_VERSION).lib \
185         user32.lib \
186         wsutil\libwsutil.lib \
187         $(GLIB_LIBS)
188
189 EXECUTABLES=wireshark.exe tshark.exe rawshark.exe \
190         capinfos.exe editcap.exe mergecap.exe text2pcap.exe randpkt.exe dumpcap.exe
191
192 RESOURCES=image\wireshark.res image\libwireshark.res image\tshark.res \
193         image\capinfos.res image\editcap.res image\mergecap.res \
194         image\text2pcap.res image\wiretap.res image\dumpcap.res \
195         image\rawshark.res image\libwsutil.res
196
197
198 all: $(LIBS_CHECK) config.h tools image codecs $(C_ARES_DLL) $(ADNS_DLL) $(ZLIB_DLL) wsutil wiretap epan $(EXECUTABLES) $(RESOURCES) doc help install-all
199
200 packaging: all
201         cd packaging
202         cd nsis
203         $(MAKE) /$(MAKEFLAGS) -f makefile.nmake
204         cd ..
205         cd ..
206
207 packaging_u3: all
208         cd packaging
209         cd u3
210         cd win32
211         $(MAKE) /$(MAKEFLAGS) -f makefile.nmake
212         cd ..
213         cd ..
214         cd ..
215
216 packaging_papps: all
217         cd packaging
218         cd portableapps
219         cd win32
220         $(MAKE) /$(MAKEFLAGS) -f makefile.nmake
221         cd ..
222         cd ..
223         cd ..
224
225 # use (info-)zip from cygwin to pack things
226 packaging_zip: all
227 !IFDEF MSVCR_DLL
228         xcopy "$(MSVCR_DLL)" $(INSTALL_DIR)
229 !ENDIF
230 !IFDEF VCREDIST_EXE
231         @echo Including vcredist_$(TARGET_MACHINE).exe -- your recipient may need to run it!
232         xcopy "$(VCREDIST_EXE)" $(INSTALL_DIR)
233 !ENDIF
234         rm -f wireshark.zip
235         zip -r -9 wireshark.zip $(INSTALL_DIR)/
236
237 wireshark.bsc: *.sbr epan\*.sbr epan\dfilter\*.sbr epan\ftypes\*.sbr epan\wslua\*.sbr epan\dissectors\*.sbr gtk\*.sbr wiretap\*.sbr
238         rm -f $@
239         $(BSCMAKE) @<<
240                 /o $@ $?
241 <<
242         xcopy $@ $(INSTALL_DIR)\ /d
243
244 $(RESOURCES): image
245
246 wiretap\wiretap-$(WTAP_VERSION).lib: image $(ZLIB_DLL) wiretap
247
248 wireshark.exe   : $(LIBS_CHECK) config.h svnversion.h $(wireshark_OBJECTS) wsgetopt.obj inet_ntop.obj inet_pton.obj codecs epan gtk image\wireshark.res wsutil\libwsutil.lib wiretap\wiretap-$(WTAP_VERSION).lib codecs\codecs.lib gtk\libui.lib plugins
249         @echo Linking $@
250         $(LINK) @<<
251                 /OUT:wireshark.exe $(guiflags) $(guilibsdll) $(LDFLAGS) /LARGEADDRESSAWARE /SUBSYSTEM:windows $(wireshark_LIBS) wsgetopt.obj inet_ntop.obj inet_pton.obj $(GTK_LIBS) codecs\codecs.lib gtk\libui.lib $(wireshark_OBJECTS) image\wireshark.res
252 <<
253 !IF $(MSC_VER_REQUIRED) >= 1400
254         mt.exe -nologo -manifest "wireshark.exe.manifest" -outputresource:wireshark.exe;1
255 !ENDIF
256
257 tshark.exe      : $(LIBS_CHECK) config.h svnversion.h $(tshark_OBJECTS) wsgetopt.obj inet_ntop.obj epan image\tshark.res wsutil\libwsutil.lib wiretap\wiretap-$(WTAP_VERSION).lib plugins
258         @echo Linking $@
259         $(LINK) @<<
260                 /OUT:tshark.exe $(conflags) $(conlibsdll) $(LDFLAGS) /LARGEADDRESSAWARE /SUBSYSTEM:console $(tshark_LIBS) $(tshark_OBJECTS) wsgetopt.obj inet_ntop.obj image\tshark.res
261 <<
262 !IF $(MSC_VER_REQUIRED) >= 1400
263         mt.exe -nologo -manifest "tshark.exe.manifest" -outputresource:tshark.exe;1
264 !ENDIF
265
266 rawshark.exe    : $(LIBS_CHECK) config.h svnversion.h $(rawshark_OBJECTS) wsgetopt.obj inet_ntop.obj epan image\rawshark.res wsutil\libwsutil.lib wiretap\wiretap-$(WTAP_VERSION).lib plugins
267         @echo Linking $@
268         $(LINK) @<<
269                 /OUT:rawshark.exe $(conflags) $(conlibsdll) $(LDFLAGS) /LARGEADDRESSAWARE /SUBSYSTEM:console $(rawshark_LIBS) $(rawshark_OBJECTS) wsgetopt.obj inet_ntop.obj image\rawshark.res
270 <<
271 !IF $(MSC_VER_REQUIRED) >= 1400
272         mt.exe -nologo -manifest "rawshark.exe.manifest" -outputresource:rawshark.exe;1
273 !ENDIF
274
275 # XXX: This makefile does not properly handle doing a 'nmake ... capinfos.exe' directly since some of the .objs
276 #      (e.g. epan\plugins.obj) must be built first using epan\Makefile.nmake (which happens for 'nmake ... all').
277 capinfos.exe    : $(LIBS_CHECK) config.h $(capinfos_OBJECTS) wsgetopt.obj wsutil\libwsutil.lib wiretap\wiretap-$(WTAP_VERSION).lib image\capinfos.res
278         @echo Linking $@
279         $(LINK) @<<
280                 /OUT:capinfos.exe $(conflags) $(conlibsdll) $(LDFLAGS) /SUBSYSTEM:console $(capinfos_OBJECTS) wsgetopt.obj $(capinfos_LIBS) image\capinfos.res
281 <<
282 !IF $(MSC_VER_REQUIRED) >= 1400
283         mt.exe -nologo -manifest "capinfos.exe.manifest" -outputresource:capinfos.exe;1
284 !ENDIF
285
286 # XXX: This makefile does not properly handle doing a 'nmake ... editcap.exe' directly since some of the .objs
287 #      (e.g. epan\plugins.obj) must be built first using epan\Makefile.nmake (which happens for 'nmake ... all').
288 editcap.exe     : $(LIBS_CHECK) config.h $(editcap_OBJECTS) wsgetopt.obj strptime.obj wsutil\libwsutil.lib wiretap\wiretap-$(WTAP_VERSION).lib image\editcap.res
289         @echo Linking $@
290         $(LINK) @<<
291                 /OUT:editcap.exe $(conflags) $(conlibsdll) $(LDFLAGS) /SUBSYSTEM:console $(editcap_OBJECTS) wsgetopt.obj strptime.obj $(editcap_LIBS) image\editcap.res
292 <<
293 !IF $(MSC_VER_REQUIRED) >= 1400
294         mt.exe -nologo -manifest "editcap.exe.manifest" -outputresource:editcap.exe;1
295 !ENDIF
296
297 mergecap.exe    : $(LIBS_CHECK)  config.h svnversion.h mergecap.obj merge.obj wsgetopt.obj wsutil\libwsutil.lib wiretap\wiretap-$(WTAP_VERSION).lib image\mergecap.res
298         @echo Linking $@
299         $(LINK) @<<
300                 /OUT:mergecap.exe $(conflags) $(conlibsdll) $(LDFLAGS) /SUBSYSTEM:console mergecap.obj merge.obj wsgetopt.obj $(mergecap_LIBS) image\mergecap.res
301 <<
302 !IF $(MSC_VER_REQUIRED) >= 1400
303         mt.exe -nologo -manifest "mergecap.exe.manifest" -outputresource:mergecap.exe;1
304 !ENDIF
305
306 text2pcap.exe   : $(LIBS_CHECK) config.h text2pcap.obj text2pcap-scanner.obj wsgetopt.obj wsutil\libwsutil.lib wiretap\wiretap-$(WTAP_VERSION).lib strptime.obj image\text2pcap.res
307         @echo Linking $@
308         $(LINK) @<<
309                 /OUT:text2pcap.exe $(conflags) $(conlibsdll) $(LDFLAGS) /SUBSYSTEM:console text2pcap.obj text2pcap-scanner.obj wsgetopt.obj $(text2pcap_LIBS) strptime.obj image\text2pcap.res
310 <<
311 !IF $(MSC_VER_REQUIRED) >= 1400
312         mt.exe -nologo -manifest "text2pcap.exe.manifest" -outputresource:text2pcap.exe;1
313 !ENDIF
314
315 dftest.exe      : $(dftest_OBJECTS) epan
316         @echo Linking $@
317         $(LINK) @<<
318                 /OUT:dftest.exe $(conflags) $(conlibsdll) $(LDFLAGS) /SUBSYSTEM:console $(dftest_LIBS) $(dftest_OBJECTS)
319 <<
320 !IF $(MSC_VER_REQUIRED) >= 1400
321         mt.exe -nologo -manifest "dftest.exe.manifest" -outputresource:dftest.exe;1
322 !ENDIF
323
324 randpkt.exe     : $(randpkt_OBJECTS) wsgetopt.obj
325         @echo Linking $@
326         $(LINK) @<<
327                 /OUT:randpkt.exe $(conflags) $(conlibsdll) $(LDFLAGS) /SUBSYSTEM:console $(randpkt_LIBS) $(randpkt_OBJECTS) wsgetopt.obj
328 <<
329 !IF $(MSC_VER_REQUIRED) >= 1400
330         mt.exe -nologo -manifest "randpkt.exe.manifest" -outputresource:randpkt.exe;1
331 !ENDIF
332
333 dumpcap.exe     : $(LIBS_CHECK) config.h svnversion.h $(dumpcap_OBJECTS) wsgetopt.obj inet_ntop.obj wsutil\libwsutil.lib wiretap\wiretap-$(WTAP_VERSION).lib image\dumpcap.res
334         @echo Linking $@
335         $(LINK) @<<
336                 /OUT:dumpcap.exe $(conflags) $(conlibsdll) $(LDFLAGS) /SUBSYSTEM:console $(dumpcap_LIBS) $(dumpcap_OBJECTS) wsgetopt.obj inet_ntop.obj image\dumpcap.res
337 <<
338 !IF $(MSC_VER_REQUIRED) >= 1400
339         mt.exe -nologo -manifest "dumpcap.exe.manifest" -outputresource:dumpcap.exe;1
340 !ENDIF
341
342
343 config.h        : config.h.win32 config.nmake
344         sed -e s/@VERSION@/$(VERSION)/ \
345             -e "s/@HAVE_C_ARES@/$(C_ARES_CONFIG)/" \
346             -e "s/@HAVE_GNU_ADNS@/$(ADNS_CONFIG)/" \
347             -e "s/@HAVE_PCRE@/$(PCRE_CONFIG)/" \
348             -e "s/@HAVE_KFW@/$(KFW_CONFIG)/" \
349             -e "s/@HAVE_NETTLE@/$(NETTLE_CONFIG)/" \
350             -e "s/@HAVE_LIBZ@/$(ZLIB_CONFIG)/" \
351             -e "s/@HAVE_LIBPCAP@/$(WINPCAP_CONFIG)/" \
352             -e "s/@HAVE_PCAP_FINDALLDEVS@/$(PCAP_FINDALLDEVS_CONFIG)/" \
353             -e "s/@HAVE_PCAP_DATALINK_NAME_TO_VAL@/$(PCAP_DATALINK_NAME_TO_VAL_CONFIG)/" \
354             -e "s/@HAVE_PCAP_DATALINK_VAL_TO_NAME@/$(PCAP_DATALINK_VAL_TO_NAME_CONFIG)/" \
355             -e "s/@HAVE_PCAP_BREAKLOOP@/$(PCAP_BREAKLOOP_CONFIG)/" \
356             -e "s/@HAVE_REMOTE@/$(PCAP_HAVE_REMOTE_CONFIG)/" \
357             -e "s/@HAVE_PCAP_REMOTE@/$(PCAP_REMOTE_CONFIG)/" \
358             -e "s/@HAVE_PCAP_OPEN@/$(PCAP_OPEN_CONFIG)/" \
359             -e "s/@HAVE_PCAP_LIST_DATALINKS@/$(PCAP_LIST_DATALINKS_CONFIG)/" \
360             -e "s/@HAVE_PCAP_SET_DATALINK@/$(PCAP_SET_DATALINK_CONFIG)/" \
361             -e "s/@HAVE_PCAP_SETSAMPLING@/$(PCAP_SETSAMPLING_CONFIG)/" \
362             -e "s/@HAVE_LIBWIRESHARKDLL@/$(LIBWIRESHARK_CONFIG)/" \
363             -e "s/@HAVE_LIBGNUTLS@/$(GNUTLS_CONFIG)/" \
364             -e "s/@HAVE_LIBGCRYPT@/$(LIBGCRYPT_CONFIG)/" \
365             -e "s/@HAVE_LUA@/$(LUA_CONFIG)/" \
366             -e "s/@HAVE_LUA_5_1@/$(LUA_VERSION)/" \
367             -e "s/@HAVE_AIRPCAP@/$(AIRPCAP_CONFIG)/" \
368             -e "s/@HAVE_AIRPDCAP@/$(AIRPDCAP_CONFIG)/" \
369             -e "s/@HAVE_LIBPORTAUDIO@/$(PORTAUDIO_CONFIG)/" \
370             -e "s/@PORTAUDIO_API_1@/$(PORTAUDIO_API_CONFIG)/" \
371             -e "s/@HAVE_SMI@/$(SMI_CONFIG)/" \
372             -e "s/@HAVE_GEOIP@/$(GEOIP_CONFIG)/" \
373             -e "s/@HAVE_NEW_PACKET_LIST@/$(NEW_PACKET_LIST_CONFIG)/" \
374             -e "s/@INET6@/$(INET6_CONFIG)/" \
375             -e "s/@HAVE_NTDDNDIS_H@/$(NTDDNDIS_CONFIG)/" \
376             < config.h.win32 > $@
377
378
379 ps.c: tools\rdps.py print.ps
380         $(PYTHON) tools\rdps.py print.ps ps.c
381 #
382 # Build the version string
383 #
384 !IF EXIST(".svn/entries")
385 SVNENTRIES = .svn/entries
386 !ELSE
387 SVNENTRIES =
388 !ENDIF
389 svnversion.h: $(SVNENTRIES)
390         rm -f svnversion.h
391         $(PERL) make-version.pl
392
393
394 #
395 # Build "tshark-tap-register.c", which contains a function
396 # "register_all_tap_listeners()"
397 # that calls the register routines for all TShark tap listeners.
398 #
399 # We do this by grepping through sources.
400 #
401 # Formatting conventions:  The name of the tap_listener_register_*
402 # routines must start in column zero, or must be preceded only by
403 # "void " starting in column zero, and must not be inside #if.
404 #
405 # The first argument is the name of the file to write.
406 # The second argument is the directory in which the source files live.
407 # All subsequent arguments are the files to scan.
408 #
409 tshark-tap-register.c: $(TSHARK_TAP_SRC) tools\make-tapreg-dotc
410         @echo Making tshark-tap-register.c
411         @$(SH) tools/make-tapreg-dotc tshark-tap-register.c . $(TSHARK_TAP_SRC)
412
413 text2pcap-scanner.c : text2pcap-scanner.l
414         $(LEX) -otext2pcap-scanner.c text2pcap-scanner.l
415
416 text2pcap-scanner.obj : text2pcap-scanner.c
417         $(CC) $(CVARSDLL) $(GENERATED_CFLAGS) -Fd.\ -c $?
418
419 clean-local: clean-deps
420         rm -f $(wireshark_OBJECTS) $(tshark_OBJECTS) $(dumpcap_OBJECTS) $(rawshark_OBJECTS) \
421                 $(EXTRA_OBJECTS) $(EXECUTABLES) *.pdb *.exe.manifest \
422                 capinfos.obj editcap.obj mergecap.obj text2pcap.obj \
423                 nio-ie5.obj update.obj \
424                 text2pcap-scanner.obj text2pcap-scanner.c rdps.obj \
425                 rdps.pdb rdps.exe rdps.ilk config.h ps.c $(LIBS_CHECK) \
426                 dftest.obj dftest.exe randpkt.obj randpkt.ext \
427                 doxygen.cfg \
428                 $(RESOURCES) libwireshark.dll wiretap-$(WTAP_VERSION).dll \
429                 libwsutil.dll \
430                 wireshark.bsc
431
432 clean: clean-local
433         cd asn1
434         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake clean
435         cd ../wiretap
436         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake clean
437         cd ../wsutil
438         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake clean
439         cd ../codecs
440         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake clean
441         cd ../gtk
442         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake clean
443         cd ../epan
444         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake clean
445         cd ../plugins
446         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake clean
447         cd ../tools
448         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake clean
449         cd ../image
450         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake clean
451         cd ../doc
452         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake clean
453         cd ../help
454         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake clean
455         cd ../packaging/nsis
456         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake clean
457         cd ../u3/win32
458         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake clean
459         cd ../../portableapps/win32
460         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake clean
461         cd ../../..
462
463 # "distclean" removes all files not part of the distribution.
464 # It does not remove generated files that are part of the distribution.
465 distclean-local: clean-local
466 !IFDEF ADNS_DIR
467 !IF "$(MSVC_VARIANT)" != "MSVC6"
468         rm -f $(ADNS_DLL) $(ADNS_LIBS)
469 !ENDIF
470 !ENDIF
471 !IFDEF ZLIB_DIR
472         rm -f $(ZLIB_DLL) $(ZLIB_DIR)\zlib1.dll.manifest \
473                 $(ZLIB_DIR)\include\zlib.h $(ZLIB_DIR)\include\zconf.h \
474                 $(ZLIB_DIR)\lib\zdll.lib
475 !ENDIF
476         rm -f config.h $(BUILT_SOURCES)
477
478 distclean: distclean-local
479         cd wiretap
480         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake distclean
481         cd ../wsutil
482         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake distclean
483         cd ../codecs
484         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake distclean
485         cd ../gtk
486         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake distclean
487         cd ../epan
488         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake distclean
489         cd ../plugins
490         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake distclean
491         cd ../tools
492         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake distclean
493         cd ../image
494         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake distclean
495         cd ../doc
496         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake distclean
497         cd ../help
498         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake distclean
499         cd ../packaging/nsis
500         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake distclean
501         cd ../u3/win32
502         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake distclean
503         cd ../../portableapps/win32
504         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake distclean
505         cd ../../..
506
507 # Make "maintainer-clean" only if you would like to remove ALL generated
508 # files.
509 # Be sure to have python and perl installed to regenerate them.
510 maintainer-clean-local: distclean-local
511         rm -f $(GENERATED_FILES)
512
513 maintainer-clean: maintainer-clean-local
514         cd wiretap
515         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake maintainer-clean
516         cd ../wsutil
517         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake maintainer-clean
518         cd ../codecs
519         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake maintainer-clean
520         cd ../gtk
521         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake maintainer-clean
522         cd ../epan
523         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake maintainer-clean
524         cd ../plugins
525         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake maintainer-clean
526         cd ../tools
527         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake maintainer-clean
528         cd ../image
529         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake maintainer-clean
530         cd ../doc
531         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake maintainer-clean
532         cd ../help
533         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake maintainer-clean
534         cd ../packaging/nsis
535         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake maintainer-clean
536         cd ../u3/win32
537         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake maintainer-clean
538         cd ../../portableapps/win32
539         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake maintainer-clean
540         cd ../../..
541
542 tools::
543         cd tools
544         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake
545         cd ..
546
547 image::
548         cd image
549         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake
550         cd ..
551
552 !IFDEF ADNS_DIR
553 # Non-MSVC6 variants have to avoid indirectly using msvcrt.dll,
554 # therefore compile the adns dll from source ADNS_DIR package.
555 # To avoid path problems, copy the adns sources to a temp dir,
556 # compile and copy the resulting files back to (source) ADNS_DIR
557 #
558 # Unfortunately:
559 # - we need to "patch" adns_dll.rep and adns_dll.rc (at least for MSVC2005EE)
560 # - on MSVC6 we can't easily rebuild, because iphlpapi.h is needed
561 #
562 $(ADNS_DLL):
563 !IF "$(MSVC_VARIANT)" == "MSVC6"
564         if not exist $(WIRESHARK_LIBS)\$(MSVC_VARIANT)\adns mkdir $(WIRESHARK_LIBS)\$(MSVC_VARIANT)\adns
565         copy $(ADNS_DIR)\adns_win32\lib\adns_dll.dll $(ADNS_DLL)
566         copy $(ADNS_DIR)\adns_win32\lib\adns_dll.lib $(ADNS_LIBS)
567 !ELSE
568         xcopy $(ADNS_DIR) adns.tmp /D /I /E /Y
569         copy adns_dll.dep adns.tmp\adns_win32\adns_dll
570         copy adns_dll.rc adns.tmp\adns_win32\adns_dll
571         cd adns.tmp\adns_win32\adns_dll
572         set CFG=adns_dll - Win32 Release
573         $(MAKE) /$(MAKEFLAGS) -f adns_dll.mak LOC="$(LOCAL_CFLAGS)"
574         cd ..\lib
575 !IF $(MSC_VER_REQUIRED) >= 1400
576         mt.exe -nologo -manifest "adns_dll.dll.manifest" -outputresource:adns_dll.dll;2
577 !ENDIF
578         if not exist $(WIRESHARK_LIBS)\$(MSVC_VARIANT)\adns mkdir $(WIRESHARK_LIBS)\$(MSVC_VARIANT)\adns
579         copy adns_dll.dll $(ADNS_DLL)
580         copy adns_dll.lib $(ADNS_LIBS)
581         cd ..\..\..
582         rm -r -f adns.tmp
583 !ENDIF
584 !ENDIF
585
586 !IFDEF ZLIB_DIR
587 # Non-MSVC6 variants have to avoid indirectly using msvcrt.dll,
588 # therefore compile the zlib dll from source ZLIB_DIR package.
589 # To avoid path problems, copy the zlib sources to a temp dir,
590 # compile and copy the resulting files back to (source) ZLIB_DIR
591 $(ZLIB_DLL):
592         xcopy $(ZLIB_DIR) zlib.tmp /D /I /E /Y
593         cd zlib.tmp
594         $(MAKE) /$(MAKEFLAGS) -f win32/Makefile.msc zlib1.dll LOC="$(LOCAL_CFLAGS)"
595         if not exist $(ZLIB_DIR) mkdir $(ZLIB_DIR)
596         if not exist $(ZLIB_DIR)\lib mkdir $(ZLIB_DIR)\lib
597         if not exist $(ZLIB_DIR)\include mkdir $(ZLIB_DIR)\include
598 !IF $(MSC_VER_REQUIRED) >= 1400
599         mt.exe -nologo -manifest "zlib1.dll.manifest" -outputresource:zlib1.dll;2
600 !ENDIF
601         copy zlib1.dll $(ZLIB_DIR)
602         copy zdll.lib $(ZLIB_DIR)\lib
603         copy zconf.h $(ZLIB_DIR)\include
604         copy zlib.h $(ZLIB_DIR)\include
605         cd ..
606         rm -r -f zlib.tmp
607 !ENDIF
608
609 wsutil::
610         cd wsutil
611         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake
612         cd ..
613
614 wiretap::
615         cd wiretap
616         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake
617         cd ..
618
619 codecs::
620         cd codecs
621         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake
622         cd ..
623
624 gtk:: help config.h svnversion.h doxygen
625         cd gtk
626         $(MAKE) /$(MAKEFLAGS) /f Makefile.nmake libui.lib
627         cd ..
628
629 epan:: $(RESOURCES) $(ZLIB_DLL) wiretap\wiretap-$(WTAP_VERSION).lib $(BUILT_SOURCES) doxygen
630         cd epan
631         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake
632         cd ..
633
634 plugins::
635         cd plugins
636         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake
637         cd ..
638
639 doc::
640         cd doc
641         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake
642         cd ..
643
644 help::
645         cd help
646         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake
647         cd ..
648
649 doxygen.cfg: config.nmake doxygen.cfg.in
650         sed -e s/@VERSION@/$(VERSION)/ \
651             < doxygen.cfg.in > $@
652
653 doxygen-run:
654 !IFDEF DOXYGEN
655         $(DOXYGEN) doxygen.cfg
656 !ENDIF
657
658 doxygen: doxygen.cfg doxygen-run
659         
660
661 ################################################################################
662 # Prepare build environment by downloading and installing required libraries
663 ################################################################################
664
665 # The required tools to build Wireshark.
666 #
667 # The 'find' tool is available both in \WINNT\System32 and in cygwin's /usr/bin.
668 # We only need the cygwin version (for some shell scripts).
669 # In the PATH, System32 is before cygwin's dir, so explicitly check for /usr/bin/find.
670 REQUIRED_TOOLS=\
671         $(CC) \
672         $(LINK) \
673         nmake \
674 !IF $(MSC_VER_REQUIRED) >= 1400
675         mt \
676 !ENDIF
677         $(SH_PROG)      \
678         $(YACC) \
679         $(LEX)  \
680         env     \
681         grep    \
682         /usr/bin/find   \
683         $(PERL) \
684         $(PYTHON)       \
685         sed     \
686         unzip   \
687         wget
688
689 verify_tools:
690         @$(SH) $(WIN_SETUP) --appverify $(REQUIRED_TOOLS)
691
692 # Targets and etc used to verify or download libraries
693
694 !IFNDEF WIN_SETUP_OPT
695 WIN_SETUP_OPT=--download
696 !ENDIF
697
698 # Verify that the required library 'package' (zip) files have been downloaded.
699 # (It seems reasonable to assume that if the files have been downloaded
700 #  then they have been installed).
701 check_libs:
702         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake WIN_SETUP_OPT=--libverify process_libs
703
704 # Verify library packages:
705 #  If $(CHECK_TAG) is non-null then checktag failed; Exit with an error message. (See beginning of this Makefile).
706 #  Otherwise do detailed library package files verification only if Makefile.nmake or config.make have been updated
707 #  (or dummy file doesn't exist because of 'make clean' or whatever).
708 #  Note that the creation/modification time of a file after an svn update of that file 
709 #   is the time of the update (not the time of the file in the repository).
710 # touch is only called if libverify succeeds.
711 $(LIBS_CHECK):  $(CHECK_TAG) config.nmake Makefile.nmake
712         @echo  Verifying library package files ...
713         @$(MAKE) /$(MAKEFLAGS) -f Makefile.nmake WIN_SETUP_OPT=--libverify process_libs
714         @touch $@
715
716 # Target for "checktag failed" (libraries not up to date).
717 # Defined only if "checktag" failed (see beginning of this Makefile).
718 !IF "$(CHECK_TAG)" != ""
719 $(CHECK_TAG): FORCE
720         @echo \? Wireshark Libraries not up-to-date \?
721         @echo \? Do you need to run "nmake -f Makefile.nmake setup" \?
722         @echo.
723         @exit 1
724
725 FORCE:  ## Assumption: no file named FORCE exists in the current directory
726
727 !ENDIF
728
729 # Download (if needed) and install all the required libraries into WIRESHARK_LIBS.
730 # A clean_setup is done first to ensure that the target dirs don't
731 # contain old files remaining from a previous setup run.
732 setup: verify_tools clean_setup process_libs
733
734
735 # The process_libs target when invoked causes either a --libverify or a --download for all the required libraries.
736 # (The choice is determined by the value of the macro WIN_SETUP_OPT).
737 process_libs:
738     @if not exist $(WIRESHARK_LIBS) md $(WIRESHARK_LIBS)
739 !IFDEF GTK_DIR
740         @$(SH) $(WIN_SETUP) "$(WIN_SETUP_OPT)" "$(WIRESHARK_LIBS)" \
741                 gtk2 gtk+-bundle_$(GTK_PKG)_$(WIRESHARK_TARGET_PLATFORM).zip
742 !ENDIF
743 !IFDEF KFW_DIR
744         @$(SH) $(WIN_SETUP) "$(WIN_SETUP_OPT)" "$(WIRESHARK_LIBS)" \
745                 . kfw-3.2.2-ws1.zip
746 !ENDIF
747 !IFDEF PCAP_DIR
748         @$(SH) $(WIN_SETUP) "$(WIN_SETUP_OPT)" "$(WIRESHARK_LIBS)" \
749                 . WpdPack_$(PCAP_VERSION).zip
750 !ENDIF
751 !IFDEF AIRPCAP_DIR
752         @$(SH) $(WIN_SETUP) "$(WIN_SETUP_OPT)" "$(WIRESHARK_LIBS)" \
753                 AirPcap_Devpack_4_1_0_1622 AirPcap_Devpack_4_1_0_1622.zip
754 !ENDIF
755 !IFDEF C_ARES_DIR
756         @$(SH) $(WIN_SETUP) "$(WIN_SETUP_OPT)" "$(WIRESHARK_LIBS)" \
757                 . c-ares-1.6.0ws.zip
758 !ENDIF
759 !IFDEF ADNS_DIR
760         @$(SH) $(WIN_SETUP) "$(WIN_SETUP_OPT)" "$(WIRESHARK_LIBS)" \
761                 . adns-1.0-win32-05ws.zip
762 !ENDIF
763 !IFDEF PCRE_DIR
764         @$(SH) $(WIN_SETUP) "$(WIN_SETUP_OPT)" "$(WIRESHARK_LIBS)" \
765                 pcre-7.0 pcre-7.0-bin.zip
766         @$(SH) $(WIN_SETUP) "$(WIN_SETUP_OPT)" "$(WIRESHARK_LIBS)" \
767                 pcre-7.0 pcre-7.0-lib.zip
768 !ENDIF
769 !IFDEF ZLIB_DIR
770         @$(SH) $(WIN_SETUP) "$(WIN_SETUP_OPT)" "$(WIRESHARK_LIBS)" \
771                 zlib123 zlib123ws.zip
772 !ENDIF
773 !IFDEF LUA_DIR
774         @$(SH) $(WIN_SETUP) "$(WIN_SETUP_OPT)" "$(WIRESHARK_LIBS)" \
775                 lua5.1.4 lua$(LUA_DIST)_lib.zip
776 !ENDIF
777
778 !IFDEF GNUTLS_DIR
779         @$(SH) $(WIN_SETUP) "$(WIN_SETUP_OPT)" "$(WIRESHARK_LIBS)" \
780                 . gnutls-2.8.5-1.zip
781 !ENDIF
782 !IFDEF PORTAUDIO_DIR
783         @$(SH) $(WIN_SETUP) "$(WIN_SETUP_OPT)" "$(WIRESHARK_LIBS)" \
784                 . portaudio_v19_2.zip
785 !ENDIF
786 !IFDEF SMI_DIR
787         @$(SH) $(WIN_SETUP) "$(WIN_SETUP_OPT)" "$(WIRESHARK_LIBS)" \
788                 . libsmi-0.4.8.zip
789 !ENDIF
790 !IFDEF GEOIP_DIR
791         @$(SH) $(WIN_SETUP) "$(WIN_SETUP_OPT)" "$(WIRESHARK_LIBS)" \
792                 . GeoIP-1.4.5ws.zip
793 !ENDIF
794 !IFDEF HHC_DIR
795         @$(SH) $(WIN_SETUP) "$(WIN_SETUP_OPT)" "$(WIRESHARK_LIBS)" \
796                 user-guide user-guide-28526.zip
797 !ENDIF
798 !IFDEF UPX
799         @$(SH) $(WIN_SETUP) "$(WIN_SETUP_OPT)" "$(WIRESHARK_LIBS)" \
800                 . upx303w.zip
801 !ENDIF
802 !IFDEF NASM
803         @$(SH) $(WIN_SETUP) "$(WIN_SETUP_OPT)" "$(WIRESHARK_LIBS)" \
804                 . nasm-2.02-win32.zip
805 !ENDIF
806 !IF "$(WIN_SETUP_OPT)" == "--download"
807         @$(SH) $(WIN_SETUP) --settag "$(WIRESHARK_LIBS)"
808 !ENDIF
809         @echo.
810         @echo Wireshark is ready to build.
811
812 # Cleanup files installed by the setup target. It will not remove the
813 # downloaded zip files.
814 # WHEN UPDATING LIBRARY VERSIONS, KEEP ALSO ONE FORMER VERSION SO
815 # UPDATING REMOVES THE FORMER USER DIRS
816 clean_setup:
817     rm -r -f $(WIRESHARK_LIBS)/adns-1.0-win32-05ws
818     rm -r -f $(WIRESHARK_LIBS)/c-ares-1.5.3ws
819     rm -r -f $(WIRESHARK_LIBS)/c-ares-1.6.0ws
820     rm -r -f $(WIRESHARK_LIBS)/gettext-0.14.5
821     rm -r -f $(WIRESHARK_LIBS)/gettext-runtime-0.17
822     rm -r -f $(WIRESHARK_LIBS)/gettext-runtime-0.17-1
823     rm -r -f $(WIRESHARK_LIBS)/gettext-0.17-1            # win64
824     rm -r -f $(WIRESHARK_LIBS)/glib
825     rm -r -f $(WIRESHARK_LIBS)/gnutls-2.8.1-1
826     rm -r -f $(WIRESHARK_LIBS)/gnutls-2.8.5-1
827     rm -r -f $(WIRESHARK_LIBS)/gtk2
828     rm -r -f $(WIRESHARK_LIBS)/gtk+
829     rm -r -f $(WIRESHARK_LIBS)/gtk-wimp
830     rm -r -f $(WIRESHARK_LIBS)/kfw-2.5
831     rm -r -f $(WIRESHARK_LIBS)/kfw-3.2.2-ws1
832     rm -r -f $(WIRESHARK_LIBS)/libiconv-1.9.1.bin.woe32
833     rm -r -f $(WIRESHARK_LIBS)/lua5.1
834     rm -r -f $(WIRESHARK_LIBS)/lua5.1.4
835     rm -r -f $(WIRESHARK_LIBS)/libsmi-0.4.5
836     rm -r -f $(WIRESHARK_LIBS)/libsmi-0.4.8
837     rm -r -f $(WIRESHARK_LIBS)/nasm-2.00
838     rm -r -f $(WIRESHARK_LIBS)/nasm-2.02
839     rm -r -f $(WIRESHARK_LIBS)/pcre-6.4
840     rm -r -f $(WIRESHARK_LIBS)/pcre-7.0
841     rm -r -f $(WIRESHARK_LIBS)/portaudio_v19
842     rm -r -f $(WIRESHARK_LIBS)/portaudio_v19_2
843     rm -r -f $(WIRESHARK_LIBS)/user-guide
844     rm -r -f $(WIRESHARK_LIBS)/WpdPack
845     rm -r -f $(WIRESHARK_LIBS)/AirPcap_Devpack_1_0_0_594
846     rm -r -f $(WIRESHARK_LIBS)/AirPcap_Devpack_4_0_0_1480
847     rm -r -f $(WIRESHARK_LIBS)/AirPcap_Devpack_4_1_0_1622
848     rm -r -f $(WIRESHARK_LIBS)/zlib123
849     rm -r -f $(WIRESHARK_LIBS)/zlib123-dll
850     rm -r -f $(WIRESHARK_LIBS)/upx301w
851     rm -r -f $(WIRESHARK_LIBS)/upx303w
852     rm -r -f $(WIRESHARK_LIBS)/GeoIP-1.4.5ws
853
854 ################################################################################
855 # Prepare the debug trees for running Wireshark/Tshark from there.
856 ################################################################################
857
858
859 # prepare debugging of Wireshark in INSTALL_DIR
860 debug-wireshark: wireshark.exe install-generated-files
861
862 # prepare debugging of tshark in INSTALL_DIR
863 debug-tshark: tshark.exe install-generated-files
864
865 # prepare debugging of rawshark in INSTALL_DIR
866 debug-rawshark: rawshark.exe install-generated-files
867
868 # prepare debugging of dumpcap in INSTALL_DIR
869 debug-dumpcap: dumpcap.exe install-generated-files
870
871
872 # install generated files (exe, "our" libs, ...)
873 install-generated-files:
874         set copycmd=/y
875         if not exist $(INSTALL_DIR) mkdir $(INSTALL_DIR)
876 !IF DEFINED (MSVCR_DLL) && "$(MSVC_VARIANT)" == "MSVC2008"
877         xcopy "$(MSVCR_DLL)" $(INSTALL_DIR)\*.* /d
878 !ENDIF
879 !IFDEF ENABLE_LIBWIRESHARK
880         xcopy epan\libwireshark.dll $(INSTALL_DIR) /d
881         if exist epan\libwireshark.pdb xcopy .\epan\libwireshark.pdb $(INSTALL_DIR) /d
882 !ENDIF
883         xcopy ".\wiretap\wiretap-$(WTAP_VERSION).dll" $(INSTALL_DIR) /d
884         if exist ".\wiretap\wiretap-$(WTAP_VERSION).pdb" xcopy ".\wiretap\wiretap-$(WTAP_VERSION).pdb" $(INSTALL_DIR) /d
885         xcopy ".\wsutil\libwsutil.dll" $(INSTALL_DIR) /d
886         if exist wireshark.exe copy wireshark.exe $(INSTALL_DIR)\wireshark.exe
887         if exist wireshark.pdb copy wireshark.pdb $(INSTALL_DIR)\wireshark.pdb
888         if exist ".\docbook\user-guide.chm" xcopy ".\docbook\user-guide.chm" $(INSTALL_DIR) /d
889         if exist tshark.exe xcopy tshark.exe $(INSTALL_DIR) /d
890         if exist tshark.pdb xcopy tshark.pdb $(INSTALL_DIR) /d
891         if exist rawshark.exe xcopy rawshark.exe $(INSTALL_DIR) /d
892         if exist rawshark.pdb xcopy rawshark.pdb $(INSTALL_DIR) /d
893         if exist dumpcap.exe xcopy dumpcap.exe $(INSTALL_DIR) /d
894         if exist dumpcap.pdb xcopy dumpcap.pdb $(INSTALL_DIR) /d
895         if exist mergecap.exe xcopy mergecap.exe $(INSTALL_DIR) /d
896         if exist mergecap.pdb xcopy mergecap.pdb $(INSTALL_DIR) /d
897         if exist text2pcap.exe xcopy text2pcap.exe $(INSTALL_DIR) /d
898         if exist text2pcap.pdb xcopy text2pcap.pdb $(INSTALL_DIR) /d
899         if exist capinfos.exe xcopy capinfos.exe $(INSTALL_DIR) /d
900         if exist capinfos.pdb xcopy capinfos.pdb $(INSTALL_DIR) /d
901         if exist editcap.exe xcopy editcap.exe $(INSTALL_DIR) /d
902         if exist editcap.pdb xcopy editcap.pdb $(INSTALL_DIR) /d
903         xcopy "doc\AUTHORS-SHORT" $(INSTALL_DIR) /d
904         xcopy ".\manuf" $(INSTALL_DIR) /d
905         xcopy ".\services" $(INSTALL_DIR) /d
906         xcopy ".\README" $(INSTALL_DIR) /d
907         xcopy ".\README.win32" $(INSTALL_DIR) /d
908         xcopy "doc\AUTHORS-SHORT-FORMAT" $(INSTALL_DIR) /d
909         xcopy ".\COPYING" $(INSTALL_DIR) /d
910         copy ".\NEWS" $(INSTALL_DIR)\NEWS.txt
911         xcopy ".\cfilters" $(INSTALL_DIR) /d
912         xcopy ".\colorfilters" $(INSTALL_DIR) /d
913         xcopy ".\dfilters" $(INSTALL_DIR) /d
914         xcopy ".\smi_modules" $(INSTALL_DIR) /d
915 !IFDEF LUA_DIR
916         xcopy ".\epan\wslua\init.lua" $(INSTALL_DIR) /d
917         xcopy ".\epan\wslua\console.lua" $(INSTALL_DIR) /d
918 !ENDIF
919         xcopy ipmap.html $(INSTALL_DIR) /d
920         xcopy doc\*.html $(INSTALL_DIR) /d
921         if not exist $(INSTALL_DIR)\help mkdir $(INSTALL_DIR)\help
922         xcopy ".\help\*.*" $(INSTALL_DIR)\help /d
923 # you can't reliably use xcopy to rename files "on the fly" (so copy first, then rename)
924         xcopy ".\help\faq.txt" $(INSTALL_DIR) /d
925         if exist $(INSTALL_DIR)\FAQ del $(INSTALL_DIR)\FAQ
926         ren $(INSTALL_DIR)\faq.txt FAQ 
927         if not exist $(INSTALL_DIR)\dtds mkdir $(INSTALL_DIR)\dtds
928         xcopy ".\dtds\*.*" $(INSTALL_DIR)\dtds /d
929         if not exist $(INSTALL_DIR)\asn1 mkdir $(INSTALL_DIR)\asn1
930         echo create empty asn1 default.tt file to prevent problems 2> $(INSTALL_DIR)\asn1\default.tt
931         if not exist $(INSTALL_DIR)\radius mkdir $(INSTALL_DIR)\radius
932         xcopy ".\radius\*.*" $(INSTALL_DIR)\radius /d
933         if not exist $(INSTALL_DIR)\diameter mkdir $(INSTALL_DIR)\diameter
934         xcopy ".\diameter\*.dtd" $(INSTALL_DIR)\diameter /d
935         xcopy ".\diameter\*.xml" $(INSTALL_DIR)\diameter /d
936         if not exist $(INSTALL_DIR)\tpncp mkdir $(INSTALL_DIR)\tpncp
937         xcopy ".\tpncp\*.dat" $(INSTALL_DIR)\tpncp /d
938         if not exist $(INSTALL_DIR)\wimaxasncp mkdir $(INSTALL_DIR)\wimaxasncp
939         xcopy ".\wimaxasncp\*.*" $(INSTALL_DIR)\wimaxasncp /d
940         if not exist $(INSTALL_DIR)\plugins mkdir $(INSTALL_DIR)\plugins
941         if not exist $(INSTALL_DIR)\plugins\$(VERSION) mkdir $(INSTALL_DIR)\plugins\$(VERSION)
942         cd plugins 
943         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake install-plugins 
944         cd .. 
945
946 # "install-all" will copy all files needed to run Wireshark/Tshark
947 # to the INSTALL_DIR, so you can run/debug Wireshark/Tshark from there.
948 install-all: install-generated-files
949         set copycmd=/y
950         if not exist $(INSTALL_DIR) mkdir $(INSTALL_DIR)
951         xcopy $(GTK_DIR)\bin\libgdk-win32-2.0-0.dll $(INSTALL_DIR) /d
952         xcopy $(GTK_DIR)\bin\libgdk_pixbuf-2.0-0.dll $(INSTALL_DIR) /d
953         xcopy $(GTK_DIR)\bin\libgtk-win32-2.0-0.dll $(INSTALL_DIR) /d
954         xcopy $(GTK_DIR)\bin\libatk-1.0-0.dll $(INSTALL_DIR) /d
955         xcopy $(GTK_DIR)\bin\libpango-1.0-0.dll $(INSTALL_DIR) /d
956         xcopy $(GTK_DIR)\bin\libpangowin32-1.0-0.dll $(INSTALL_DIR) /d
957         if not exist $(INSTALL_DIR)\etc mkdir $(INSTALL_DIR)\etc
958         if not exist $(INSTALL_DIR)\etc\gtk-2.0 mkdir $(INSTALL_DIR)\etc\gtk-2.0
959         if not exist $(INSTALL_DIR)\etc\pango mkdir $(INSTALL_DIR)\etc\pango
960         if not exist $(INSTALL_DIR)\lib mkdir $(INSTALL_DIR)\lib
961         if not exist $(INSTALL_DIR)\lib\gtk-2.0 mkdir $(INSTALL_DIR)\lib\gtk-2.0
962         if not exist $(INSTALL_DIR)\lib\gtk-2.0\modules mkdir $(INSTALL_DIR)\lib\gtk-2.0\modules
963         if not exist $(INSTALL_DIR)\lib\gtk-2.0\$(GTK_LIB_DIR) mkdir $(INSTALL_DIR)\lib\gtk-2.0\$(GTK_LIB_DIR)
964         if not exist $(INSTALL_DIR)\lib\gtk-2.0\$(GTK_LIB_DIR)\loaders mkdir $(INSTALL_DIR)\lib\gtk-2.0\$(GTK_LIB_DIR)\loaders
965         if not exist $(INSTALL_DIR)\lib\gtk-2.0\$(GTK_LIB_DIR)\engines mkdir $(INSTALL_DIR)\lib\gtk-2.0\$(GTK_LIB_DIR)\engines
966         xcopy $(GTK_DIR)\etc\gtk-2.0\*.* $(INSTALL_DIR)\etc\gtk-2.0 /d
967         if exist $(GTK_DIR)\etc\pango xcopy $(GTK_DIR)\etc\pango\pango.* $(INSTALL_DIR)\etc\pango /d
968         if exist $(GTK_DIR)\lib\gtk-2.0\$(GTK_LIB_DIR)\loaders xcopy $(GTK_DIR)\lib\gtk-2.0\$(GTK_LIB_DIR)\loaders\libpixbufloader-*.dll $(INSTALL_DIR)\lib\gtk-2.0\$(GTK_LIB_DIR)\loaders /d
969         xcopy $(GTK_DIR)\lib\gtk-2.0\modules\libgail.dll $(INSTALL_DIR)\lib\gtk-2.0\modules /d
970         xcopy $(GTK_DIR)\lib\gtk-2.0\$(GTK_LIB_DIR)\engines\libpixmap.dll $(INSTALL_DIR)\lib\gtk-2.0\$(GTK_LIB_DIR)\engines /d
971 !IFDEF NEED_LIBPNG_DLL
972         xcopy $(GTK_DIR)\bin\libpng12-0.dll $(INSTALL_DIR) /d
973 !ENDIF
974 !IFDEF NEED_LIBTIFF_DLL
975         xcopy $(GTK_DIR)\bin\$(TIFF_DLL) $(INSTALL_DIR) /d
976 !ENDIF
977 !IFDEF NEED_LIBJPEG_DLL
978         xcopy $(GTK_DIR)\bin\$(JPEG_DLL) $(INSTALL_DIR) /d
979 !ENDIF
980 !IFDEF NEED_CAIRO_DLL
981         xcopy $(GTK_DIR)\bin\libcairo-2.dll $(INSTALL_DIR)  /d
982         xcopy $(GTK_DIR)\bin\libpangocairo-1.0-0.dll $(INSTALL_DIR) /d
983 !ENDIF
984 !IFDEF NEED_FREETYPE_DLL
985         xcopy $(GTK_DIR)\bin\libpangoft2-1.0-0.dll $(INSTALL_DIR) /d
986         xcopy $(GTK_DIR)\bin\$(FREETYPE_DLL) $(INSTALL_DIR) /d
987 !ENDIF
988 !IFDEF NEED_FONTCONFIG_DLL
989         xcopy $(GTK_DIR)\bin\$(FONTCONFIG_DLL) $(INSTALL_DIR) /d
990 !ENDIF
991 !IFDEF NEED_EXPAT_DLL
992         xcopy $(GTK_DIR)\bin\$(EXPAT_DLL) $(INSTALL_DIR) /d
993 !ENDIF
994         if not exist $(INSTALL_DIR)\$(GTK_WIMP_DLLDST_DIR) mkdir $(INSTALL_DIR)\$(GTK_WIMP_DLLDST_DIR)
995         xcopy "$(GTK_WIMP_DLLSRC_DIR)\libwimp.dll" $(INSTALL_DIR)\$(GTK_WIMP_DLLDST_DIR) /d
996         if not exist $(INSTALL_DIR)\$(GTK_WIMP_RCDST_DIR) mkdir $(INSTALL_DIR)\$(GTK_WIMP_RCDST_DIR)
997         xcopy "$(GTK_WIMP_RCSRC_DIR)\gtkrc" $(INSTALL_DIR)\$(GTK_WIMP_RCDST_DIR) /d
998         xcopy $(GTK_DIR)\bin\libgio-2.0-0.dll $(INSTALL_DIR) /d
999         xcopy $(GTK_DIR)\bin\libglib-2.0-0.dll $(INSTALL_DIR) /d
1000         xcopy $(GTK_DIR)\bin\libgmodule-2.0-0.dll $(INSTALL_DIR) /d
1001         xcopy $(GTK_DIR)\bin\libgobject-2.0-0.dll $(INSTALL_DIR) /d
1002         xcopy $(GTK_DIR)\bin\libgthread-2.0-0.dll $(INSTALL_DIR) /d
1003         xcopy $(GTK_DIR)\bin\$(INTL_DLL) $(INSTALL_DIR) /d
1004 !IFDEF ZLIB_DIR
1005         xcopy $(ZLIB_DLL) $(INSTALL_DIR) /d
1006 !ENDIF
1007 !IFDEF C_ARES_DIR
1008         xcopy $(C_ARES_DLL) $(INSTALL_DIR) /d
1009 !ENDIF
1010 !IFDEF ADNS_DIR
1011         xcopy $(ADNS_DLL) $(INSTALL_DIR) /d
1012 !ENDIF
1013 !IFDEF PCRE_DIR
1014         xcopy $(PCRE_DIR)\bin\pcre3.dll $(INSTALL_DIR) /d
1015         xcopy $(PCRE_DIR)\man\cat3\pcrepattern.3.txt $(INSTALL_DIR) /d
1016 !ENDIF
1017 !IFDEF KFW_DIR
1018         xcopy $(KFW_DIR)\bin\comerr32.dll $(INSTALL_DIR) /d
1019         xcopy $(KFW_DIR)\bin\krb5_32.dll $(INSTALL_DIR) /d
1020         xcopy $(KFW_DIR)\bin\k5sprt32.dll $(INSTALL_DIR) /d
1021 !ENDIF
1022 !IFDEF GNUTLS_DIR
1023         xcopy $(GNUTLS_DIR)\bin\libgcrypt-11.dll $(INSTALL_DIR) /d
1024         xcopy $(GNUTLS_DIR)\bin\libgnutls-26.dll $(INSTALL_DIR) /d
1025         xcopy $(GNUTLS_DIR)\bin\libgpg-error-0.dll $(INSTALL_DIR) /d
1026         xcopy $(GNUTLS_DIR)\bin\libtasn1-3.dll $(INSTALL_DIR) /d
1027 !ENDIF
1028 !IFDEF LUA_DIR
1029         xcopy "$(LUA_DIR)\lua5.1.dll" $(INSTALL_DIR) /d
1030 !ENDIF
1031 !IFDEF SMI_DIR
1032         if not exist $(INSTALL_DIR)\snmp mkdir $(INSTALL_DIR)\snmp
1033         if not exist $(INSTALL_DIR)\snmp\mibs mkdir $(INSTALL_DIR)\snmp\mibs
1034         xcopy "$(SMI_DIR)\lib\smi.dll" $(INSTALL_DIR) /d
1035         xcopy "$(SMI_DIR)\mibs\*" $(INSTALL_DIR)\snmp\mibs /d
1036 !ENDIF
1037
1038 clean-deps:
1039         rm -rf $(INSTALL_DIR)
1040         cd plugins
1041         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake clean-deps
1042         cd ..
1043
1044 checkapi_local:
1045         $(PERL) tools/checkAPIs.pl \
1046         $(wireshark_SOURCES) \
1047         $(TSHARK_TAP_SRC) \
1048 #       $(EXTRA_wireshark_SOURCES)
1049
1050 checkapi: checkapi_local
1051         cd wiretap
1052         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake checkapi
1053         cd ../codecs
1054         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake checkapi
1055         cd ../gtk
1056         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake checkapi
1057         cd ../epan
1058 ##      $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake checkapi
1059         cd ../epan/crypt
1060 ##      $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake checkapi
1061         cd ../dfilter
1062         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake checkapi
1063         cd ../ftypes
1064 ##      $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake checkapi
1065         cd ../wslua
1066 ##      $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake checkapi
1067         cd ../dissectors
1068         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake checkapi
1069         cd ..
1070         cd ../plugins
1071         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake checkapi
1072         cd ../wsutil
1073         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake checkapi