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