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