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