From Albert Chin
[obnox/wireshark/wip.git] / Makefile.am
1 # Makefile.am
2 # Automake file for Wireshark
3 #
4 # $Id$
5 #
6 # Wireshark - Network traffic analyzer
7 # By Gerald Combs <gerald@wireshark.org>
8 # Copyright 1998 Gerald Combs
9 #
10 # This program is free software; you can redistribute it and/or
11 # modify it under the terms of the GNU General Public License
12 # as published by the Free Software Foundation; either version 2
13 # of the License, or (at your option) any later version.
14 #
15 # This program is distributed in the hope that it will be useful,
16 # but WITHOUT ANY WARRANTY; without even the implied warranty of
17 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18 # GNU General Public License for more details.
19 #
20 # You should have received a copy of the GNU General Public License
21 # along with this program; if not, write to the Free Software
22 # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
23
24 ACLOCAL_AMFLAGS = `./aclocal-flags`
25
26 #
27 # This is a hideous hack.
28 #
29 # Automake needs to know into which sections to install various man
30 # pages; if the names in "man_MANS" have suffixes, it can infer the
31 # sections from the name (e.g., "hello.1" goes in section 1), but if
32 # they don't have suffixes, it can't tell what sections to put them, and
33 # it just gives up and doesn't create any rules to install them (and it
34 # gives up silently, so you have no clue what's wrong).
35 #
36 # Therefore, we can't just set "man_MANS" to a list of variables to be
37 # filled in by the configure script, as those variables don't have man
38 # page section numbers.
39 #
40 # It turns out (although this is not documented anywhere I could find
41 # in the automake Info file) that if you define, instead, variables with
42 # names like "man{section}_MANS", automake will infer that the names in
43 # those variables are the names of man pages to be installed in section
44 # "{section}".
45 #
46 # So, as all our man pages go in section 1, we define "man1_MANS" to
47 # contain all the man page.
48 #
49 # *However*, if "man_MANS" isn't defined at all, automake concludes that
50 # there are no man pages, the fact that, say, "man1_MANS" is defined
51 # nonwithstanding!  (I suspect this is the result of a mistaken attempt
52 # to get people to fix their automake files not to use "MANS"; if "MANS"
53 # is defined, it prints a warning and sets the exit status, but doesn't
54 # exit, and then it just gives up if "man_MANS" isn't defined,
55 # presumably on the theory that the only reason it wouldn't be defined
56 # is because the automake file uses the obsolete "MANS" variable instead
57 # of the shiny new "man_MANS" variable.)
58 #
59 # So we also define "man_MANS", but don't define it as anything;
60 # automake will arrange that the Makefile define it as the union of all
61 # the "man{section}_MANS" variables.
62 #
63 bin_PROGRAMS = @wireshark_bin@ @capinfos_bin@ @editcap_bin@ @mergecap_bin@ @tshark_bin@ @dftest_bin@ @randpkt_bin@ @text2pcap_bin@ @dumpcap_bin@
64 bin_SCRIPTS = @idl2wrs_bin@
65 man1_MANS = @wireshark_man@ @capinfos_man@ @editcap_man@ @mergecap_man@ @tshark_man@ @text2pcap_man@ @dumpcap_man@ @idl2wrs_man@
66 man4_MANS = @wiresharkfilter_man@
67 man_MANS =
68
69 EXTRA_PROGRAMS = wireshark tshark capinfos editcap mergecap dftest \
70         randpkt text2pcap dumpcap
71 EXTRA_SCRIPTS = idl2wrs
72
73 idl2wrs: tools/idl2wrs.sh Makefile
74         cp $(srcdir)/tools/idl2wrs.sh idl2wrs
75         chmod +x idl2wrs
76
77 #
78 # Wireshark configuration files are put in $(pkgdatadir).
79 #
80 pkgdata_DATA = AUTHORS-SHORT COPYING manuf wireshark.html tshark.html \
81         wireshark-filter.html capinfos.html editcap.html \
82         idl2wrs.html mergecap.html text2pcap.html dumpcap.html \
83         cfilters colorfilters dfilters
84
85 #
86 # Install the Diameter DTD and XML files in the "diameter" subdirectory
87 # of that directory.
88 #
89 diameterdir = $(pkgdatadir)/diameter
90 diameter_DATA = \
91         diameter/chargecontrol.xml \
92         diameter/dictionary.dtd \
93         diameter/dictionary.xml \
94         diameter/imscxdx.xml \
95         diameter/mobileipv4.xml \
96         diameter/nasreq.xml \
97         diameter/sunping.xml \
98         diameter/TGPPSh.xml
99
100 #
101 # Install the DTDs directory files in the "dtds" subdirectory
102 # of that directory
103 #
104 dtdsdir = $(pkgdatadir)/dtds
105 dtds_DATA = \
106         dtds/dc.dtd \
107         dtds/itunes.dtd \
108         dtds/pocsettings.dtd \
109         dtds/presence.dtd \
110         dtds/reginfo.dtd \
111         dtds/rlmi.dtd \
112         dtds/rss.dtd \
113         dtds/smil.dtd \
114         dtds/xcap-caps.dtd \
115         dtds/watcherinfo.dtd
116 #
117 # Install the RADIUS directory files in the "radius" subdirectory
118 # of that directory.
119 #
120 radiusdir = $(pkgdatadir)/radius
121 radius_DATA = \
122         radius/dictionary  \
123         radius/dictionary.3com  \
124         radius/dictionary.3gpp  \
125         radius/dictionary.3gpp2  \
126         radius/dictionary.acc  \
127         radius/dictionary.alcatel  \
128         radius/dictionary.alteon  \
129         radius/dictionary.altiga  \
130         radius/dictionary.aptis  \
131         radius/dictionary.ascend  \
132         radius/dictionary.bay  \
133         radius/dictionary.bintec  \
134         radius/dictionary.bristol  \
135         radius/dictionary.cablelabs  \
136         radius/dictionary.cabletron  \
137         radius/dictionary.cisco  \
138         radius/dictionary.cisco.bbsm  \
139         radius/dictionary.cisco.vpn3000  \
140         radius/dictionary.cisco.vpn5000  \
141         radius/dictionary.colubris  \
142         radius/dictionary.columbia_university  \
143         radius/dictionary.compat  \
144         radius/dictionary.cosine  \
145         radius/dictionary.ericsson  \
146         radius/dictionary.erx  \
147         radius/dictionary.extreme  \
148         radius/dictionary.foundry  \
149         radius/dictionary.freeradius  \
150         radius/dictionary.gandalf  \
151         radius/dictionary.garderos  \
152         radius/dictionary.gemtek  \
153         radius/dictionary.itk  \
154         radius/dictionary.juniper  \
155         radius/dictionary.karlnet  \
156         radius/dictionary.livingston  \
157         radius/dictionary.localweb  \
158         radius/dictionary.merit  \
159         radius/dictionary.microsoft  \
160         radius/dictionary.mikrotik  \
161         radius/dictionary.navini  \
162         radius/dictionary.netscreen  \
163         radius/dictionary.nokia  \
164         radius/dictionary.nomadix  \
165         radius/dictionary.propel  \
166         radius/dictionary.quintum  \
167         radius/dictionary.redback  \
168         radius/dictionary.redcreek  \
169         radius/dictionary.shasta  \
170         radius/dictionary.shiva  \
171         radius/dictionary.sonicwall  \
172         radius/dictionary.springtide  \
173         radius/dictionary.t_systems_nova  \
174         radius/dictionary.telebit  \
175         radius/dictionary.trapeze  \
176         radius/dictionary.tunnel  \
177         radius/dictionary.unisphere  \
178         radius/dictionary.unix  \
179         radius/dictionary.usr  \
180         radius/dictionary.valemount  \
181         radius/dictionary.versanet  \
182         radius/dictionary.wispr  \
183         radius/dictionary.xedia
184
185 PLATFORM_SRC = capture-pcap-util-unix.c
186
187 include Makefile.common
188
189 if HAVE_PLUGINS
190
191 plugin_libs = \
192         plugins/acn/acn.la \
193         plugins/agentx/agentx.la \
194         plugins/artnet/artnet.la \
195         plugins/asn1/asn1.la \
196         plugins/ciscosm/ciscosm.la \
197         plugins/docsis/docsis.la \
198         plugins/enttec/enttec.la \
199         plugins/giop/cosnaming.la \
200         plugins/giop/coseventcomm.la \
201         plugins/gryphon/gryphon.la \
202         plugins/irda/irda.la \
203         plugins/lwres/lwres.la \
204         plugins/mate/mate.la \
205         plugins/megaco/megaco.la \
206         plugins/mgcp/mgcp.la \
207         plugins/opsi/opsi.la \
208         plugins/pcli/pcli.la \
209         plugins/profinet/profinet.la \
210         plugins/rlm/rlm.la \
211         plugins/rtnet/rtnet.la \
212         plugins/rudp/rudp.la \
213         plugins/sbus/sbus.la \
214         plugins/stats_tree/stats_tree.la \
215         plugins/v5ua/v5ua.la
216
217 if ENABLE_STATIC
218 plugin_ldadd = $(plugin_libs)
219
220 else            # ENABLE_STATIC
221
222 plugin_ldadd = \
223         "-dlopen" self  \
224         "-dlopen" plugins/acn/acn.la \
225         "-dlopen" plugins/agentx/agentx.la \
226         "-dlopen" plugins/artnet/artnet.la \
227         "-dlopen" plugins/asn1/asn1.la \
228         "-dlopen" plugins/ciscosm/ciscosm.la \
229         "-dlopen" plugins/docsis/docsis.la \
230         "-dlopen" plugins/enttec/enttec.la \
231         "-dlopen" plugins/giop/cosnaming.la \
232         "-dlopen" plugins/giop/coseventcomm.la \
233         "-dlopen" plugins/gryphon/gryphon.la \
234         "-dlopen" plugins/h223/h223.la \
235         "-dlopen" plugins/irda/irda.la \
236         "-dlopen" plugins/lwres/lwres.la \
237         "-dlopen" plugins/mate/mate.la \
238         "-dlopen" plugins/megaco/megaco.la \
239         "-dlopen" plugins/mgcp/mgcp.la \
240         "-dlopen" plugins/opsi/opsi.la \
241         "-dlopen" plugins/pcli/pcli.la \
242         "-dlopen" plugins/profinet/profinet.la \
243         "-dlopen" plugins/rlm/rlm.la \
244         "-dlopen" plugins/rtnet/rtnet.la \
245         "-dlopen" plugins/rudp/rudp.la \
246         "-dlopen" plugins/sbus/sbus.la \
247         "-dlopen" plugins/stats_tree/stats_tree.la \
248         "-dlopen" plugins/v5ua/v5ua.la
249
250 endif           # ENABLE_STATIC
251
252 else            # HAVE_PLUGINS
253 plugin_libs =
254
255 plugin_ldadd =
256 endif           # HAVE_PLUGINS
257
258 # Optional objects that I know how to build. These will be
259 # linked into the wireshark executable.
260 # They will also be linked into the tshark executable; if this
261 # list ever grows to include something that can't be linked with
262 # tshark, or if tshark needs something that wireshark doesn't,
263 # we should probably split this into stuff needed both
264 # by wireshark and tshark and stuff needed only by one or the
265 # other.
266 wireshark_optional_objects = @GETOPT_O@ @STRERROR_O@ \
267         @STRCASECMP_O@ @STRNCASECMP_O@ @MKSTEMP_O@ @STRPTIME_O@
268
269 # Additional libs that I know how to build. These will be
270 # linked into the wireshark executable.
271 wireshark_additional_libs = \
272         gtk/libui.a             \
273         codecs/libcodec.a       \
274         wiretap/libwiretap.la   \
275         epan/libwireshark.la
276
277 # This is the automake dependency variable for the executable
278 wireshark_DEPENDENCIES = \
279         $(wireshark_optional_objects)   \
280         $(wireshark_additional_libs)    \
281         $(plugin_libs)
282
283 # This automake variable adds to the link-line for the executable.
284 #
285 # Note that Wireshark doesn't have to be linked with @GLIB_LIBS@, as
286 # they are included in @GTK_LIBS@, and doesn't have to be linked with
287 # @SOCKET_LIBS@ or @NSL_LIBS@, as those should also be included in
288 # @GTK_LIBS@ (as those are also needed for X applications, and GTK+
289 # applications are X applications).
290
291 if ENABLE_STATIC
292 wireshark_LDFLAGS = -Wl,-static -all-static
293 else
294 wireshark_LDFLAGS = -export-dynamic
295 endif
296
297 wireshark_LDADD = \
298         $(wireshark_optional_objects)   \
299         $(wireshark_additional_libs)    \
300         @SNMP_LIBS@ @SSL_LIBS@          \
301         $(plugin_ldadd)                 \
302         @PCRE_LIBS@                     \
303         @PCAP_LIBS@ @GTK_LIBS@ @ADNS_LIBS@ @KRB5_LIBS@ @FRAMEWORKS@ \
304         @LIBICONV@                      \
305         @LIBGCRYPT_LIBS@                \
306         @LIBGNUTLS_LIBS@                \
307         @PORTAUDIO_LIBS@
308
309 # Additional libs that I know how to build. These will be
310 # linked into the tshark executable.
311 tshark_additional_libs =                \
312         wiretap/libwiretap.la           \
313         epan/libwireshark.la
314
315 # This is the automake dependency variable for the executable
316 tshark_DEPENDENCIES = \
317         $(wireshark_optional_objects)   \
318         $(tshark_additional_libs)       \
319         $(plugin_libs)
320
321 # This automake variable adds to the link-line for the executable
322 tshark_LDADD = \
323         $(wireshark_optional_objects)   \
324         $(tshark_additional_libs)       \
325         @SNMP_LIBS@ @SSL_LIBS@          \
326         $(plugin_ldadd)                 \
327         @PCRE_LIBS@                     \
328         @GLIB_LIBS@ -lm                 \
329         @PCAP_LIBS@ @SOCKET_LIBS@ @NSL_LIBS@ @ADNS_LIBS@ @KRB5_LIBS@ \
330         @LIBICONV@                      \
331         @LIBGCRYPT_LIBS@                \
332         @LIBGNUTLS_LIBS@
333
334 if ENABLE_STATIC
335 tshark_LDFLAGS = -Wl,-static -all-static
336 else
337 tshark_LDFLAGS = -export-dynamic
338 endif
339
340 # Optional objects that I know how to build, and that are needed by
341 # text2pcap.
342 text2pcap_optional_objects = @STRERROR_O@ @STRPTIME_O@
343
344 text2pcap_DEPENDENCIES = text2pcap.h
345
346 # This automake variable adds to the link-line for the executable
347 text2pcap_LDADD = $(text2pcap_optional_objects) \
348         @GLIB_LIBS@ -lm
349
350 mergecap_DEPENDENCIES = wiretap/libwiretap.la
351
352 # This is the automake dependency variable for the executable
353 capinfos_DEPENDENCIES = wiretap/libwiretap.la
354 editcap_DEPENDENCIES = wiretap/libwiretap.la
355
356 # This automake variable adds to the link-line for the executable
357 capinfos_LDADD = wiretap/libwiretap.la @GLIB_LIBS@
358 editcap_LDADD = wiretap/libwiretap.la @GLIB_LIBS@
359 mergecap_LDADD = wiretap/libwiretap.la @GLIB_LIBS@
360
361 # Common headers
362 AM_CPPFLAGS = -I$(top_srcdir) -I$(top_srcdir)/wiretap
363
364 #
365 # Build the version string
366 #
367 # FORCE is the portable version of .PHONY
368 FORCE:
369
370 svnversion.h: FORCE
371         $(PERL) $(srcdir)/make-version.pl $(srcdir)
372
373 #
374 # Build the short version of the authors file for the about dialog
375 #
376 AUTHORS-SHORT: AUTHORS make-authors-short.pl
377         $(PERL) $(srcdir)/perlnoutf.pl $(srcdir)/make-authors-short.pl < $(srcdir)/AUTHORS > AUTHORS-SHORT
378
379 #
380 # Build the short version of the authors file with formatting codes for the
381 # man page
382 #
383 AUTHORS-SHORT-FORMAT: AUTHORS-SHORT make-authors-format.pl
384         $(PERL) $(srcdir)/perlnoutf.pl $(srcdir)/make-authors-format.pl < AUTHORS-SHORT > AUTHORS-SHORT-FORMAT
385
386 #
387 # Build shell scripts by doing variable substitution.
388 # Taken from autoconf 2.13.
389 #
390 editsh = sed -e 's,@''SHELL''@,$(SHELL),g'
391
392 SUFFIXES = .sh
393 .sh:
394         rm -f $@ $@.tmp
395         $(editsh) $< > $@.tmp && chmod +x $@.tmp && mv $@.tmp $@
396
397 #
398 # Build "tshark-tap-register.c", which contains a function
399 # "register_all_tap_listeners()"
400 # that calls the register routines for all tshark tap listeners.
401 #
402 # We do this by grepping through sources.
403 #
404 # Formatting conventions:  The name of the tap_listener_register_*
405 # routines must start in column zero, or must be preceded only by
406 # "void " starting in column zero, and must not be inside #if.
407 #
408 # The first argument is the directory in which the source files live.
409 # All subsequent arguments are the files to scan.
410 #
411 tshark-tap-register.c: $(TSHARK_TAP_SRC) $(srcdir)/make-tapreg-dotc
412         @echo Making tshark-tap-register.c
413         @$(srcdir)/make-tapreg-dotc tshark-tap-register.c $(srcdir) $(TSHARK_TAP_SRC)
414
415 ps.c: print.ps rdps
416         ./rdps $(srcdir)/print.ps ps.c
417
418 rdps: rdps.c
419         $(CC_FOR_BUILD) $(CFLAGS_FOR_BUILD) -o rdps $(srcdir)/rdps.c
420
421 randpkt_additional_libs = wiretap/libwiretap.la
422
423 randpkt_DEPENDENCIES = \
424         $(randpkt_additional_libs)
425
426 randpkt_LDADD = \
427         $(randpkt_additional_libs) \
428         @GLIB_LIBS@ -lm                 \
429         @PCAP_LIBS@ @SOCKET_LIBS@ @NSL_LIBS@ @ADNS_LIBS@
430
431 dftest_additional_libs =                \
432         wiretap/libwiretap.la           \
433         epan/libwireshark.la
434
435 dftest_DEPENDENCIES = \
436         $(wireshark_optional_objects)   \
437         $(dftest_additional_libs)       \
438         $(plugin_libs)
439
440 # This automake variable adds to the link-line for the executable
441 dftest_LDADD = \
442         $(wireshark_optional_objects)   \
443         $(dftest_additional_libs)       \
444         @SNMP_LIBS@ @SSL_LIBS@          \
445         $(plugin_ldadd)                 \
446         @PCRE_LIBS@                     \
447         @GLIB_LIBS@ -lm                 \
448         @PCAP_LIBS@ @SOCKET_LIBS@ @NSL_LIBS@ @ADNS_LIBS@ @KRB5_LIBS@ \
449         @LIBICONV@                      \
450         @LIBGCRYPT_LIBS@                \
451         @LIBGNUTLS_LIBS@
452
453 dftest_LDFLAGS = -export-dynamic
454
455 dumpcap_additional_libs = \
456         wiretap/libwiretap.la
457
458 dumpcap_DEPENDENCIES = \
459         $(dumpcap_additional_libs)
460
461 dumpcap_LDADD = \
462         $(dumpcap_additional_libs)      \
463         @GLIB_LIBS@                     \
464         @PCAP_LIBS@ @SOCKET_LIBS@ @NSL_LIBS@
465
466 #
467 # XXX - "svnversion.h" is distributed in the release tarball; should
468 # we be deleting it with "make clean", or should we only do that with
469 # "make maintainer-clean"?
470 #
471 CLEANFILES =            \
472         svnversion.h    \
473         @rdps_bin@      \
474         idl2wrs         \
475         *~              \
476         vgcore.pid*
477
478 #
479 # XXX - "ps.c" is distributed in the source tarballs; why is it in the
480 # list of files removed by "make distclean"?  (It's deliberately
481 # included in that list.)
482 #
483 DISTCLEANFILES = \
484         AUTHORS-SHORT           \
485         AUTHORS-SHORT-FORMAT    \
486         ps.c
487
488 MAINTAINERCLEANFILES =          \
489         $(GENERATED_FILES)      \
490         Makefile.in             \
491         aclocal.m4              \
492         config.h.in             \
493         configure               \
494         depcomp                 \
495         install-sh              \
496         ltmain.sh               \
497         missing
498
499 EXTRA_DIST = \
500         FAQ                     \
501         INSTALL.configure       \
502         Makefile.common         \
503         Makefile.nmake          \
504         README.aix              \
505         README.bsd              \
506         README.hpux             \
507         README.irix             \
508         README.linux            \
509         README.macos            \
510         README.tru64            \
511         README.vmware           \
512         README.win32            \
513         aclocal-fallback/glib-2.0.m4 \
514         aclocal-fallback/glib.m4 \
515         aclocal-fallback/gtk-2.0.m4 \
516         aclocal-fallback/gtk.m4 \
517         aclocal-fallback/iconv.m4 \
518         aclocal-flags           \
519         autogen.sh              \
520         capinfos.c              \
521         capture-wpcap.c         \
522         capture-wpcap.h         \
523         capture_wpcap_packet.c  \
524         capture_wpcap_packet.h  \
525         cfilters                \
526         colorfilters            \
527         config.h.win32          \
528         config.nmake            \
529         debian/README.debian    \
530         debian/changelog        \
531         debian/control          \
532         debian/copyright        \
533         debian/dirs             \
534         debian/docs             \
535         debian/menu             \
536         debian/postinst         \
537         debian/prerm            \
538         debian/rules            \
539         dfilters                \
540         doc/Makefile.am         \
541         doc/Makefile.nmake      \
542         doc/README.capture      \
543         doc/README.design       \
544         doc/README.developer    \
545         doc/README.idl2wrs      \
546         doc/README.malloc       \
547         doc/README.plugins      \
548         doc/README.regression   \
549         doc/README.stats_tree   \
550         doc/README.tapping      \
551         doc/README.xml-output   \
552         doc/capinfos.pod                \
553         doc/dfilter2pod.pl      \
554         doc/editcap.pod         \
555         doc/wireshark-filter.pod.template \
556         doc/wireshark.pod       \
557         doc/idl2wrs.pod         \
558         doc/mergecap.pod        \
559         doc/randpkt.txt         \
560         doc/tshark.pod  \
561         doc/text2pcap.pod       \
562         doc/dumpcap.pod \
563         docbook/Makefile.auto.am        \
564         doxygen.cfg.in          \
565         dumpcap.c       \
566         editcap.c               \
567         epan/libwireshark.def   \
568         wireshark.desktop       \
569         image/capinfos.rc.in    \
570         image/clist_ascend.xpm  \
571         image/clist_descend.xpm \
572         image/dn_arrow.xpm      \
573         image/dumpcap.rc.in     \
574         image/editcap.rc.in     \
575         image/hi16-app-wireshark.png    \
576         image/hi32-app-wireshark.png    \
577         image/hi48-app-wireshark.png    \
578         image/icon_layout_1.xpm \
579         image/icon_layout_2.xpm \
580         image/icon_layout_3.xpm \
581         image/icon_layout_4.xpm \
582         image/icon_layout_5.xpm \
583         image/icon_layout_6.xpm \
584         image/libwireshark.rc.in        \
585         image/lo16-app-wireshark.png    \
586         image/lo32-app-wireshark.png    \
587         image/lo48-app-wireshark.png    \
588         image/Makefile.nmake    \
589         image/mergecap.rc.in    \
590         image/nsis-checked.bmp  \
591         image/nsis-unchecked.bmp        \
592         image/README.image      \
593         image/stock_dialog_error_48.xpm \
594         image/stock_dialog_info_48.xpm  \
595         image/stock_dialog_question_48.xpm      \
596         image/stock_dialog_stop_48.xpm  \
597         image/stock_dialog_warning_48.xpm       \
598         image/text2pcap.rc.in   \
599         image/toolbar/autoscroll_24.xpm \
600         image/toolbar/capture_airpcap_16.xpm \
601         image/toolbar/capture_capture_16.xpm \
602         image/toolbar/capture_details_16.xpm \
603         image/toolbar/capture_details_24.xpm \
604         image/toolbar/capture_ethernet_16.xpm  \
605         image/toolbar/capture_filter_24.xpm     \
606         image/toolbar/capture_interfaces_24.xpm \
607         image/toolbar/capture_options_24.xpm    \
608         image/toolbar/capture_prepare_16.xpm \
609         image/toolbar/capture_restart_24.xpm    \
610         image/toolbar/capture_start_24.xpm      \
611         image/toolbar/capture_stop_24.xpm       \
612         image/toolbar/checkbox_16.xpm   \
613         image/toolbar/colorize_24.xpm   \
614         image/toolbar/conversations_16.xpm      \
615         image/toolbar/decode_as_16.xpm  \
616         image/toolbar/display_filter_24.xpm     \
617         image/toolbar/endpoints_16.xpm  \
618         image/toolbar/file_set_list_16.xpm      \
619         image/toolbar/file_set_next_16.xpm      \
620         image/toolbar/file_set_previous_16.xpm  \
621         image/toolbar/graphs_16.xpm     \
622         image/toolbar/internet_24.xpm   \
623         image/toolbar/resize_columns_24.xpm     \
624         image/toolbar/stock_add_24.xpm  \
625         image/toolbar/stock_bottom_24.xpm       \
626         image/toolbar/stock_clear_24.xpm        \
627         image/toolbar/stock_close_24.xpm        \
628         image/toolbar/stock_colorselector_24.xpm        \
629         image/toolbar/stock_help_24.xpm \
630         image/toolbar/stock_jump_to_24.xpm      \
631         image/toolbar/stock_left_arrow_24.xpm   \
632         image/toolbar/stock_ok_20.xpm   \
633         image/toolbar/stock_open_24.xpm \
634         image/toolbar/stock_preferences_24.xpm  \
635         image/toolbar/stock_print_24.xpm        \
636         image/toolbar/stock_properties_24.xpm   \
637         image/toolbar/stock_refresh_24.xpm      \
638         image/toolbar/stock_right_arrow_24.xpm  \
639         image/toolbar/stock_save_24.xpm \
640         image/toolbar/stock_save_as_24.xpm      \
641         image/toolbar/stock_search_24.xpm       \
642         image/toolbar/stock_stop_24.xpm \
643         image/toolbar/stock_top_24.xpm  \
644         image/toolbar/stock_zoom_1_24.xpm       \
645         image/toolbar/stock_zoom_in_24.xpm      \
646         image/toolbar/stock_zoom_out_24.xpm     \
647         image/toolbar/telephony_16.xpm  \
648         image/toolbar/time_24.xpm       \
649         image/toolbar/web_support_24.xpm        \
650         image/toolbar/wep_closed_24.xpm \
651         image/toolbar/wiki_24.xpm       \
652         image/tshark.rc.in      \
653         image/up_arrow.xpm      \
654         image/win32-file-dlg.rc \
655         image/wireshark.exe.manifest.in \
656         image/wireshark.ico     \
657         image/wireshark.rc.in   \
658         image/wiretap.rc.in     \
659         image/wsicon.svg        \
660         image/wsicon16.png      \
661         image/wsicon16.xpm      \
662         image/wsicon256.png     \
663         image/wsicon32.png      \
664         image/wsicon32.xpm      \
665         image/wsicon48.png      \
666         image/wsicon48.xpm      \
667         image/wsicon64.png      \
668         image/wsicon64.xpm      \
669         image/wsiconcap.svg     \
670         image/wsiconcap16.xpm   \
671         image/wsiconcap256.png  \
672         image/wsiconcap32.xpm   \
673         image/wsiconcap48.xpm   \
674         image/wsicondoc.svg     \
675         image/wsicondoc256.png  \
676         image/wslogo.eps        \
677         image/wslogo.svg        \
678         image/wssplash.xpm      \
679         make-authors-format.pl  \
680         make-authors-short.pl   \
681         make-manuf              \
682         make-tapreg-dotc        \
683         make-version.pl         \
684         manuf                   \
685         manuf.tmpl              \
686         mergecap.c              \
687         perlnoutf.pl            \
688         print.ps                \
689         $(diameter_DATA)        \
690         $(dtds_DATA)            \
691         $(radius_DATA)          \
692         randpkt.c               \
693         rdps.c                  \
694         text2pcap-scanner.l     \
695         text2pcap.c             \
696         text2pcap.h             \
697         packaging/u3/win32/README.txt           \
698         packaging/u3/win32/makefile.nmake       \
699         packaging/u3/win32/manifest.tmpl        \
700         packaging/u3/win32/u3util.c             \
701         tools/idl2wrs.sh.in                     \
702         wka.tmpl
703
704 if SETUID_INSTALL
705 install-exec-hook:
706         -chmod +s $(DESTDIR)$(bindir)/dumpcap
707         -chmod +s $(DESTDIR)$(bindir)/tshark
708 else
709 install-exec-hook:
710 endif
711
712 DIST_SUBDIRS = asn1 codecs doc epan gtk help packaging plugins tools wiretap
713
714 if HAVE_PLUGINS
715 SUBDIRS = tools wiretap doc epan plugins packaging help @wireshark_SUBDIRS@
716 else
717 SUBDIRS = tools wiretap doc epan packaging help @wireshark_SUBDIRS@
718 endif
719
720 wireshark.1: doc/wireshark.pod AUTHORS-SHORT-FORMAT
721         (cd doc ; \
722         $(MAKE) ../wireshark.1 )
723
724 tshark.1: doc/tshark.pod
725         (cd doc ; \
726         $(MAKE) ../tshark.1 )
727
728 wireshark-filter.4: tshark doc/wireshark-filter.pod.template
729         (cd doc ; \
730         $(MAKE) ../wireshark-filter.4 )
731
732 capinfos.1: doc/capinfos.pod
733         (cd doc ; \
734         $(MAKE) ../capinfos.1 )
735
736 editcap.1: doc/editcap.pod
737         (cd doc ; \
738         $(MAKE) ../editcap.1 )
739
740 idl2wrs.1: doc/idl2wrs.pod
741         (cd doc ; \
742         $(MAKE) ../idl2wrs.1 )
743
744 mergecap.1: doc/mergecap.pod
745         (cd doc ; \
746         $(MAKE) ../mergecap.1 )
747
748 text2pcap.1: doc/text2pcap.pod
749         (cd doc ; \
750         $(MAKE) ../text2pcap.1 )
751
752 dumpcap.1: doc/dumpcap.pod
753         (cd doc ; \
754         $(MAKE) ../dumpcap.1 )
755
756 wireshark.html: doc/wireshark.pod AUTHORS-SHORT-FORMAT
757         (cd doc ; \
758         $(MAKE) ../wireshark.html )
759
760 tshark.html: doc/tshark.pod
761         (cd doc ; \
762         $(MAKE) ../tshark.html )
763
764 wireshark-filter.html: tshark doc/wireshark-filter.pod.template
765         (cd doc ; \
766         $(MAKE) ../wireshark-filter.html )
767
768 capinfos.html: doc/capinfos.pod
769         (cd doc ; \
770         $(MAKE) ../capinfos.html )
771
772 editcap.html: doc/editcap.pod
773         (cd doc ; \
774         $(MAKE) ../editcap.html )
775
776 idl2wrs.html: doc/idl2wrs.pod
777         (cd doc ; \
778         $(MAKE) ../idl2wrs.html )
779
780 mergecap.html: doc/mergecap.pod
781         (cd doc ; \
782         $(MAKE) ../mergecap.html )
783
784 text2pcap.html: doc/text2pcap.pod
785         (cd doc ; \
786         $(MAKE) ../text2pcap.html )
787
788 dumpcap.html: doc/dumpcap.pod
789         (cd doc ; \
790         $(MAKE) ../dumpcap.html )
791
792 libtool: $(LIBTOOL_DEPS)
793         $(SHELL) ./config.status --recheck
794
795 # We load top_stagedir with an explicit path so that libtool doesn't freak.
796 top_stagedir=`cd $(top_srcdir) && pwd`/packaging/svr4.stage
797 stagedir=$(top_stagedir)/$(PACKAGE).stage
798 host_cpu=@host_cpu@
799 host_os=@host_os@
800
801 svr4-package: $(bin_SCRIPTS) $(lib_LTLIBRARIES)
802         @if test x$(HAVE_SVR4_PACKAGING) = xyes ; then \
803                 rm -rf $(stagedir) ; \
804                 $(MAKE) DESTDIR=$(stagedir) install; \
805                 $(srcdir)/packaging/svr4/mkpkg \
806                         $(PACKAGE) \
807                         $(PACKAGE)-$(VERSION)-$(host_os)-$(host_cpu)-local \
808                         $(prefix) \
809                         $(top_stagedir) ; \
810         else \
811                 echo "Error: SVR4 packaging tools not found." ; \
812                 echo "Package build abandoned." ; \
813         fi
814
815 solaris-package: svr4-package
816
817 rpm_topdir=`cd $(top_srcdir) && pwd`/packaging/rpm
818 rpm-package: dist
819         if test x$(HAVE_RPM) = xyes ; then \
820                 cd $(rpm_topdir) ; \
821                 mkdir -p BUILD RPMS SOURCES ; \
822                 cd SOURCES ; \
823                 ln -s ../../../$(distdir).tar.gz ; \
824                 ln -s ../../../wireshark.desktop ; \
825                 ln -s ../../../image/wsicon64.png wireshark.png ; \
826                 cd .. ; \
827                 rpmbuild --define "_topdir `cd . && pwd`" -bb SPECS/wireshark.spec && \
828                         echo "Package successfully built in `pwd`/RPMS." ; \
829         else \
830                 echo "Error: RPM executable and/or source directory not found." ; \
831         fi
832 srpm-package: dist
833         if test x$(HAVE_RPM) = xyes ; then \
834                 cd $(rpm_topdir) ; \
835                 mkdir -p BUILD SRPMS SOURCES ; \
836                 cd SOURCES ; \
837                 ln -s ../../../$(distdir).tar.gz ; \
838                 ln -s ../../../wireshark.desktop ; \
839                 ln -s ../../../image/wsicon64.png wireshark.png ; \
840                 cd .. ; \
841                 rpmbuild --define "_topdir `cd . && pwd`" -bs SPECS/wireshark.spec && \
842                         echo "Package successfully built in `pwd`/SRPMS." ; \
843         else \
844                 echo "Error: RPM executable and/or source directory not found." ; \
845         fi
846
847 debian-package: debian/rules
848         dpkg-buildpackage -rfakeroot -us -uc
849
850 clean-local:
851         rm -rf $(top_stagedir)
852