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