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