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