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