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