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