Experimental Heimdal Kerberos detection.
[obnox/wireshark/wip.git] / Makefile.am
1 # Makefile.am
2 # Automake file for Ethereal
3 #
4 # $Id: Makefile.am,v 1.722 2004/03/17 18:20:57 jmayer Exp $
5 #
6 # Ethereal - Network traffic analyzer
7 # By Gerald Combs <gerald@ethereal.com>
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 = @ethereal_bin@ @editcap_bin@ @mergecap_bin@ @tethereal_bin@ @dftest_bin@ @randpkt_bin@ @text2pcap_bin@
64 bin_SCRIPTS = @idl2eth_bin@
65 man1_MANS = @ethereal_man@ @editcap_man@ @mergecap_man@ @tethereal_man@ @text2pcap_man@ @idl2eth_man@
66 man4_MANS = @etherealfilter_man@
67 man_MANS =
68
69 EXTRA_PROGRAMS = ethereal tethereal editcap mergecap dftest randpkt text2pcap
70 EXTRA_SCRIPTS = idl2eth
71
72 #
73 # Ethereal configuration files are put in $(pkgdatadir).  It currently
74 # contains the "manuf" file and a "diameter" directory.
75 #
76 pkgdata_DATA = manuf
77
78 #
79 # Install the Diameter DTD and XML files in the "diameter" subdirectory
80 # of that directory.
81 #
82 diameterdir = $(pkgdatadir)/diameter
83 diameter_DATA = dictionary.dtd dictionary.xml mobileipv4.xml \
84         nasreq.xml sunping.xml
85
86 PLATFORM_SRC = pcap-util-unix.c
87
88 include Makefile.common
89
90 if HAVE_PLUGINS
91 plugin_libs = \
92         plugins/acn/acn.la \
93         plugins/artnet/artnet.la \
94         plugins/asn1/asn1.la \
95         plugins/docsis/docsis.la \
96         plugins/enttec/enttec.la \
97         plugins/giop/cosnaming.la \
98         plugins/giop/coseventcomm.la \
99         plugins/gryphon/gryphon.la \
100         plugins/irda/irda.la \
101         plugins/lwres/lwres.la \
102         plugins/megaco/megaco.la \
103         plugins/mgcp/mgcp.la \
104         plugins/pcli/pcli.la \
105         plugins/rdm/rdm.la \
106         plugins/rtnet/rtnet.la \
107         plugins/v5ua/v5ua.la
108
109 if ENABLE_STATIC
110 plugin_ldadd = \
111         plugins/acn/packet-acn.o \
112         plugins/artnet/packet-artnet.o \
113         plugins/asn1/packet-asn1.o \
114         plugins/docsis/packet-bpkmattr.o \
115         plugins/docsis/packet-bpkmreq.o \
116         plugins/docsis/packet-bpkmrsp.o \
117         plugins/docsis/packet-docsis.o \
118         plugins/docsis/packet-dsaack.o \
119         plugins/docsis/packet-dsareq.o \
120         plugins/docsis/packet-dsarsp.o \
121         plugins/docsis/packet-dscack.o \
122         plugins/docsis/packet-dscreq.o \
123         plugins/docsis/packet-dscrsp.o \
124         plugins/docsis/packet-dsdreq.o \
125         plugins/docsis/packet-dsdrsp.o \
126         plugins/docsis/packet-macmgmt.o \
127         plugins/docsis/packet-map.o \
128         plugins/docsis/packet-regack.o \
129         plugins/docsis/packet-regreq.o \
130         plugins/docsis/packet-regrsp.o \
131         plugins/docsis/packet-rngreq.o \
132         plugins/docsis/packet-rngrsp.o \
133         plugins/docsis/packet-tlv.o \
134         plugins/docsis/packet-uccreq.o \
135         plugins/docsis/packet-uccrsp.o \
136         plugins/docsis/packet-ucd.o \
137         plugins/enttec/packet-enttec.o \
138         plugins/giop/packet-cosnaming.o \
139         plugins/giop/packet-coseventcomm.o \
140         plugins/gryphon/packet-gryphon.o \
141         plugins/irda/packet-irda.o \
142         plugins/lwres/packet-lwres.o \
143         plugins/megaco/packet-megaco.o \
144         plugins/mgcp/packet-mgcp.o \
145         plugins/pcli/packet-pcli.o \
146         plugins/rdm/packet-rdm.o \
147         plugins/rtnet/packet-rtnet.o \
148         plugins/v5ua/packet-v5ua.o
149
150 else            # ENABLE_STATIC
151 plugin_ldadd = \
152         "-dlopen" self  \
153         "-dlopen" plugins/acn/acn.la \
154         "-dlopen" plugins/artnet/artnet.la \
155         "-dlopen" plugins/asn1/asn1.la \
156         "-dlopen" plugins/docsis/docsis.la \
157         "-dlopen" plugins/enttec/enttec.la \
158         "-dlopen" plugins/giop/cosnaming.la \
159         "-dlopen" plugins/giop/coseventcomm.la \
160         "-dlopen" plugins/gryphon/gryphon.la \
161         "-dlopen" plugins/irda/irda.la \
162         "-dlopen" plugins/lwres/lwres.la \
163         "-dlopen" plugins/megaco/megaco.la \
164         "-dlopen" plugins/mgcp/mgcp.la \
165         "-dlopen" plugins/pcli/pcli.la \
166         "-dlopen" plugins/rdm/rdm.la \
167         "-dlopen" plugins/rtnet/rtnet.la \
168         "-dlopen" plugins/v5ua/v5ua.la
169
170 endif           # ENABLE_STATIC
171
172 else            # HAVE_PLUGINS
173 plugin_libs =
174
175 plugin_ldadd =
176 endif           # HAVE_PLUGINS
177
178 # Optional objects that I know how to build. These will be
179 # linked into the ethereal executable.
180 # They will also be linked into the tethereal executable; if this
181 # list ever grows to include something that can't be linked with
182 # tethereal, or if tethereal needs something that ethereal doesn't,
183 # we should probably split this into stuff needed both
184 # by ethereal and tethereal and stuff needed only by one or the
185 # other.
186 ethereal_optional_objects = @SNPRINTF_O@ @STRERROR_O@ \
187         @STRCASECMP_O@ @STRNCASECMP_O@ @MKSTEMP_O@ @STRPTIME_O@
188
189 # Additional libs that I know how to build. These will be
190 # linked into the ethereal executable.
191 ethereal_additional_libs = \
192         wiretap/libwiretap.la   \
193         gtk/libui.a             \
194         epan/libethereal.la
195
196 # This is the automake dependency variable for the executable
197 ethereal_DEPENDENCIES = \
198         $(ethereal_optional_objects)    \
199         $(ethereal_additional_libs)     \
200         $(plugin_libs)
201
202 # This automake variable adds to the link-line for the executable.
203 #
204 # Note that Ethereal doesn't have to be linked with @GLIB_LIBS@, as
205 # they are included in @GTK_LIBS@, and doesn't have to be linked with
206 # @SOCKET_LIBS@ or @NSL_LIBS@, as those should also be included in
207 # @GTK_LIBS@ (as those are also needed for X applications, and GTK+
208 # applications are X applications).
209
210 if ENABLE_STATIC
211 ethereal_LDFLAGS = -Wl,-static -all-static
212 else
213 ethereal_LDFLAGS = -export-dynamic
214 endif
215
216 ethereal_LDADD = \
217         $(ethereal_optional_objects)    \
218         $(ethereal_additional_libs)     \
219         @SNMP_LIBS@ @SSL_LIBS@          \
220         $(plugin_ldadd)                 \
221         @PCRE_LIBS@                     \
222         @PCAP_LIBS@ @GTK_LIBS@ @ADNS_LIBS@
223
224 # Additional libs that I know how to build. These will be
225 # linked into the tethereal executable.
226 tethereal_additional_libs =             \
227         wiretap/libwiretap.la           \
228         epan/libethereal.la
229
230 # This is the automake dependency variable for the executable
231 tethereal_DEPENDENCIES = \
232         $(ethereal_optional_objects)    \
233         $(tethereal_additional_libs)    \
234         $(plugin_libs)
235
236 # This automake variable adds to the link-line for the executable
237 tethereal_LDADD = \
238         $(ethereal_optional_objects)    \
239         $(tethereal_additional_libs)    \
240         @SNMP_LIBS@ @SSL_LIBS@          \
241         $(plugin_ldadd)                 \
242         @PCRE_LIBS@                     \
243         @GLIB_LIBS@ -lm                 \
244         @PCAP_LIBS@ @SOCKET_LIBS@ @NSL_LIBS@ @ADNS_LIBS@
245
246 if ENABLE_STATIC
247 tethereal_LDFLAGS = -Wl,-static -all-static
248 else
249 tethereal_LDFLAGS = -export-dynamic
250 endif
251
252 # Optional objects that I know how to build, and that are needed by
253 # text2pcap.
254 text2pcap_optional_objects = @STRERROR_O@ @STRPTIME_O@
255
256 text2pcap_DEPENDENCIES = text2pcap.h
257
258 # This automake variable adds to the link-line for the executable
259 text2pcap_LDADD = $(text2pcap_optional_objects) \
260         @GLIB_LIBS@ -lm
261
262 mergecap_DEPENDENCIES = wiretap/libwiretap.la
263
264 # This is the automake dependency variable for the executable
265 editcap_DEPENDENCIES = wiretap/libwiretap.la
266
267 # This automake variable adds to the link-line for the executable
268 editcap_LDADD = wiretap/libwiretap.la @GLIB_LIBS@
269 mergecap_LDADD = wiretap/libwiretap.la @GLIB_LIBS@
270
271 # Common headers
272 AM_CPPFLAGS = -I$(top_srcdir) -I$(top_srcdir)/wiretap
273
274 #
275 # Build the version string
276 #
277 # FORCE is the portable version of .PHONY
278 FORCE:
279
280 cvsversion.h: FORCE
281         $(PERL) $(srcdir)/make-version.pl
282
283 #
284 # Build shell scripts by doing variable substitution.
285 # Taken from autoconf 2.13.
286 #
287 editsh = sed -e 's,@''SHELL''@,$(SHELL),g'
288
289 SUFFIXES = .sh
290 .sh:
291         rm -f $@ $@.tmp
292         $(editsh) $< > $@.tmp && chmod +x $@.tmp && mv $@.tmp $@
293
294 #
295 # Build "tethereal-tap-register.c", which contains a function 
296 # "register_all_tap_listeners()"
297 # that calls the register routines for all tehtereal tap listeners.
298 #
299 # We do this by grepping through sources.
300 #
301 # Formatting conventions:  The name of the tap_listener_register_* 
302 # routines must start in column zero, or must be preceded only by 
303 # "void " starting in column zero, and must not be inside #if.
304 #
305 # The first argument is the directory in which the source files live.
306 # All subsequent arguments are the files to scan.
307 #
308 tethereal-tap-register.c: $(TETHEREAL_TAP_SRC) $(srcdir)/make-tapreg-dotc
309         @echo Making tethereal-tap-register.c
310         @$(srcdir)/make-tapreg-dotc tethereal-tap-register.c $(srcdir) $(TETHEREAL_TAP_SRC)
311
312 ps.c: print.ps rdps
313         ./rdps $(srcdir)/print.ps ps.c
314
315 rdps: rdps.c
316         $(CC) $(CFLAGS) -o rdps $(srcdir)/rdps.c
317
318 randpkt_additional_libs = wiretap/libwiretap.la
319
320 randpkt_DEPENDENCIES = \
321         $(randpkt_additional_libs)
322
323 randpkt_LDADD = \
324         $(randpkt_additional_libs) \
325         @GLIB_LIBS@ -lm                 \
326         @PCAP_LIBS@ @SOCKET_LIBS@ @NSL_LIBS@ @ADNS_LIBS@
327
328 dftest_additional_libs =                \
329         wiretap/libwiretap.la           \
330         epan/libethereal.la
331
332 dftest_DEPENDENCIES = \
333         $(ethereal_optional_objects)    \
334         $(dftest_additional_libs)       \
335         $(plugin_libs)
336
337 # This automake variable adds to the link-line for the executable
338 dftest_LDADD = \
339         $(ethereal_optional_objects)    \
340         $(dftest_additional_libs)       \
341         @SNMP_LIBS@ @SSL_LIBS@          \
342         $(plugin_ldadd)                 \
343         @PCRE_LIBS@                     \
344         @GLIB_LIBS@ -lm                 \
345         @PCAP_LIBS@ @SOCKET_LIBS@ @NSL_LIBS@ @ADNS_LIBS@
346
347 dftest_LDFLAGS = -export-dynamic
348
349 CLEANFILES =    \
350         cvsversion.h \
351         @rdps_bin@ \
352         idl2eth
353
354 DISTCLEANFILES = \
355         ps.c \
356         *~
357
358 MAINTAINERCLEANFILES =          \
359         ps.c
360
361 EXTRA_DIST = \
362         Ethereal.desktop        \
363         FAQ                     \
364         INSTALL.configure       \
365         Makefile.common         \
366         Makefile.nmake          \
367         README.aix              \
368         README.bsd              \
369         README.hpux             \
370         README.irix             \
371         README.linux            \
372         REAMDE.macos            \
373         README.tru64            \
374         README.vmware           \
375         README.win32            \
376         TODO                    \
377         aclocal-fallback/glib-2.0.m4 \
378         aclocal-fallback/glib.m4 \
379         aclocal-fallback/gtk-2.0.m4 \
380         aclocal-fallback/gtk.m4 \
381         aclocal-flags           \
382         autogen.sh              \
383         capture-wpcap.c         \
384         capture-wpcap.h         \
385         cleanbld.bat            \
386         config.h.win32          \
387         config.nmake            \
388         debian/README.debian    \
389         debian/changelog        \
390         debian/control          \
391         debian/copyright        \
392         debian/dirs             \
393         debian/docs             \
394         debian/menu             \
395         debian/postinst         \
396         debian/prerm            \
397         debian/rules            \
398         dictionary.dtd          \
399         dictionary.xml          \
400         doc/Makefile.am         \
401         doc/Makefile.nmake      \
402         doc/README.capture      \
403         doc/README.design       \
404         doc/README.developer    \
405         doc/README.idl2eth      \
406         doc/README.plugins      \
407         doc/README.regression   \
408         doc/README.tapping      \
409         doc/README.tvbuff       \
410         doc/README.xml-output   \
411         doc/dfilter2pod.pl      \
412         doc/editcap.pod         \
413         doc/ethereal-filter.pod.template \
414         doc/ethereal.pod        \
415         doc/idl2eth.pod         \
416         doc/mergecap.pod        \
417         doc/randpkt.txt         \
418         doc/tethereal.pod       \
419         doc/text2pcap.pod       \
420         editcap.c               \
421         ethereal_be.py          \
422         ethereal_gen.py         \
423         getopt.c                \
424         getopt.h                \
425         idl2eth.sh              \
426         image/Ethereal.icns     \
427         image/Makefile.nmake    \
428         image/README.image      \
429         image/clist_ascend.xpm  \
430         image/clist_descend.xpm \
431         image/dn_arrow.xpm      \
432         image/editcap.rc.in     \
433         image/eexcl3d64.xpm     \
434         image/eicon3d16.xpm     \
435         image/eicon3d32.xpm     \
436         image/eicon3d48.xpm     \
437         image/eicon3d64.xpm     \
438         image/elogo3d48x48.png  \
439         image/ethereal.ico      \
440         image/ethereal.rc.in    \
441         image/ethereal48x48-trans.png  \
442         image/ethereal48x48.png \
443         image/hi16-app-ethereal.png     \
444         image/hi32-app-ethereal.png     \
445         image/hi48-app-ethereal.png     \
446         image/icon-ethereal.xpm \
447         image/icon-excl.xpm     \
448         image/lo16-app-ethereal.png     \
449         image/lo32-app-ethereal.png     \
450         image/lo48-app-ethereal.png     \
451         image/mergecap.rc.in    \
452         image/nsis-checked.bmp  \
453         image/nsis-unchecked.bmp        \
454         image/stock_dialog_error_48.xpm \
455         image/stock_dialog_warning_48.xpm       \
456         image/stock_dialog_question_48.xpm      \
457         image/stock_dialog_info_48.xpm  \
458         image/tethereal.rc.in   \
459         image/text2pcap.rc.in   \
460         image/toolbar/capture_24.xpm    \
461         image/toolbar/cfilter_24.xpm    \
462         image/toolbar/dfilter_24.xpm    \
463         image/toolbar/stock_add_24.xpm  \
464         image/toolbar/stock_bottom_24.xpm \
465         image/toolbar/stock_close_24.xpm        \
466         image/toolbar/stock_colorselector_24.xpm        \
467         image/toolbar/stock_help_24.xpm \
468         image/toolbar/stock_jump_to_24.xpm      \
469         image/toolbar/stock_left_arrow_24.xpm \
470         image/toolbar/stock_ok_20.xpm   \
471         image/toolbar/stock_open_24.xpm \
472         image/toolbar/stock_preferences_24.xpm  \
473         image/toolbar/stock_print_24.xpm        \
474         image/toolbar/stock_properties_24.xpm   \
475         image/toolbar/stock_refresh_24.xpm      \
476         image/toolbar/stock_right_arrow_24.xpm  \
477         image/toolbar/stock_save_24.xpm \
478         image/toolbar/stock_save_as_24.xpm \
479         image/toolbar/stock_search_24.xpm       \
480         image/toolbar/stock_stop_24.xpm \
481         image/toolbar/stock_top_24.xpm \
482         image/toolbar/stock_zoom_1_24.xpm \
483         image/toolbar/stock_zoom_in_24.xpm \
484         image/toolbar/stock_zoom_out_24.xpm \
485         image/up_arrow.xpm      \
486         make-manuf              \
487         make-reg-dotc           \
488         make-reg-dotc.py        \
489         make-tapreg-dotc        \
490         make-version.pl         \
491         manuf                   \
492         manuf.tmpl              \
493         mergecap.c              \
494         mobileipv4.xml          \
495         nasreq.xml              \
496         ncp2222.py              \
497         packet-ncp2222.inc      \
498         print.ps                \
499         process-x11-fields.pl   \
500         randpkt.c               \
501         rdps.c                  \
502         sunping.xml             \
503         text2pcap-scanner.l     \
504         text2pcap.c             \
505         text2pcap.h             \
506         wka.tmpl                \
507         x11-fields
508
509 if SETUID_INSTALL
510 install-exec-hook:
511         -chmod +s $(DESTDIR)$(bindir)/ethereal
512         -chmod +s $(DESTDIR)$(bindir)/tethereal
513 else
514 install-exec-hook:
515 endif
516
517 DIST_SUBDIRS = tools wiretap doc epan plugins packaging gtk help
518
519 if HAVE_PLUGINS
520 SUBDIRS = tools wiretap doc epan plugins packaging help @ethereal_SUBDIRS@
521 else
522 SUBDIRS = tools wiretap doc epan packaging help @ethereal_SUBDIRS@
523 endif
524
525 ethereal.1: ethereal doc/ethereal.pod
526         (cd doc ; \
527         $(MAKE) ../ethereal.1 )
528
529 tethereal.1: tethereal doc/tethereal.pod
530         (cd doc ; \
531         $(MAKE) ../tethereal.1 )
532
533 ethereal-filter.4: tethereal doc/ethereal-filter.pod.template
534         (cd doc ; \
535         $(MAKE) ../ethereal-filter.4 )
536
537 editcap.1: doc/editcap.pod
538         (cd doc ; \
539         $(MAKE) ../editcap.1 )
540
541 idl2eth.1: doc/idl2eth.pod
542         (cd doc ; \
543         $(MAKE) ../idl2eth.1 )
544
545 mergecap.1: doc/mergecap.pod
546         (cd doc ; \
547         $(MAKE) ../mergecap.1 )
548
549 text2pcap.1: doc/text2pcap.pod
550         (cd doc ; \
551         $(MAKE) ../text2pcap.1 )
552
553 libtool: $(LIBTOOL_DEPS)
554         $(SHELL) ./config.status --recheck
555
556 # We load top_stagedir with an explicit path so that libtool doesn't freak.
557 top_stagedir=`cd $(top_srcdir) && pwd`/packaging/svr4.stage
558 stagedir=$(top_stagedir)/$(PACKAGE).stage
559 host_cpu=@host_cpu@
560 host_os=@host_os@
561
562 svr4-package: $(bin_SCRIPTS) $(lib_LTLIBRARIES)
563         @if test x$(HAVE_SVR4_PACKAGING) = xyes ; then \
564                 rm -rf $(stagedir) ; \
565                 $(MAKE) DESTDIR=$(stagedir) install; \
566                 $(srcdir)/packaging/svr4/mkpkg \
567                         $(PACKAGE) \
568                         $(PACKAGE)-$(VERSION)-$(host_os)-$(host_cpu)-local \
569                         $(prefix) \
570                         $(top_stagedir) ; \
571         else \
572                 echo "Error: SVR4 packaging tools not found." ; \
573                 echo "Package build abandoned." ; \
574         fi
575
576 solaris-package: svr4-package
577
578 rpm_topdir=`cd $(top_srcdir) && pwd`/packaging/rpm
579 rpm-package: dist
580         if test x$(HAVE_RPM) = xyes ; then \
581                 cd $(rpm_topdir) ; \
582                 mkdir -p BUILD RPMS SOURCES ; \
583                 cd SOURCES ; \
584                 ln -s ../../../$(distdir).tar.gz ; \
585                 cd .. ; \
586                 rpmbuild --define "_topdir `cd . && pwd`" -bb SPECS/ethereal.spec && \
587                         echo "Package successfully built in `pwd`/RPMS." ; \
588         else \
589                 echo "Error: RPM executable and/or source directory not found." ; \
590         fi
591 srpm-package: dist
592         if test x$(HAVE_RPM) = xyes ; then \
593                 cd $(rpm_topdir) ; \
594                 mkdir -p BUILD SRPMS SOURCES ; \
595                 cd SOURCES ; \
596                 ln -s ../../../$(distdir).tar.gz ; \
597                 cd .. ; \
598                 rpmbuild --define "_topdir `cd . && pwd`" -bs SPECS/ethereal.spec && \
599                         echo "Package successfully built in `pwd`/SRPMS." ; \
600         else \
601                 echo "Error: RPM executable and/or source directory not found." ; \
602         fi
603
604 debian-package: debian/rules
605         dpkg-buildpackage -rfakeroot -us -uc
606
607 clean-local:
608         rm -rf $(top_stagedir)
609
610 test-splint: $(ethereal_SOURCES)
611         splint \
612                 -gnu-extensions -D_U_=""        \
613                 -I. `glib-config --cflags` \
614                 -I./epan \
615                 -I./tools/lemon \
616                 -I./wiretap     \
617                 $(ethereal_SOURCES)