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