Put the extcap interfaces at the *end* of the interface list.
[gd/wireshark/.git] / capchild / Makefile.am
1 # Makefile.am
2 # Automake file for the "talking to dumpcap" routines for Wireshark
3 #
4 # Wireshark - Network traffic analyzer
5 # By Gerald Combs <gerald@wireshark.org>
6 # Copyright 1998 Gerald Combs
7 #
8 # This program is free software; you can redistribute it and/or
9 # modify it under the terms of the GNU General Public License
10 # as published by the Free Software Foundation; either version 2
11 # of the License, or (at your option) any later version.
12 #
13 # This program is distributed in the hope that it will be useful,
14 # but WITHOUT ANY WARRANTY; without even the implied warranty of
15 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16 # GNU General Public License for more details.
17 #
18 # You should have received a copy of the GNU General Public License
19 # along with this program; if not, write to the Free Software
20 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
21
22 include Makefile.common
23 include $(top_srcdir)/Makefile.am.inc
24
25 AM_CPPFLAGS = $(INCLUDEDIRS) $(WS_CPPFLAGS) $(GLIB_CFLAGS)
26
27 noinst_LIBRARIES = libcapchild.a
28
29 CLEANFILES = \
30         doxygen-capchild.tag    \
31         libcapchild.a           \
32         *~
33
34 MAINTAINERCLEANFILES = \
35         $(GENERATED_FILES)      \
36         Makefile.in
37
38 # All sources that should be put in the source distribution tarball
39 libcapchild_a_SOURCES = \
40         $(CAPCHILD_SRC) \
41         $(noinst_HEADERS)
42
43 libcapchild_a_DEPENDENCIES =
44
45 doxygen:
46 if HAVE_DOXYGEN
47         $(DOXYGEN) doxygen.cfg
48 endif           # HAVE_DOXYGEN
49
50 wsar_html: doxygen.cfg ../doxygen_global.cfg
51 if HAVE_DOXYGEN
52         (umask 022 ; $(DOXYGEN) doxygen.cfg)
53 endif
54
55 checkapi: checkapi-base checkapi-todo
56
57 checkapi-base:
58         $(PERL) $(top_srcdir)/tools/checkAPIs.pl -g deprecated-gtk -build \
59         -sourcedir=$(srcdir) \
60         $(CAPCHILD_SRC)
61
62 checkapi-todo:
63         $(PERL) $(top_srcdir)/tools/checkAPIs.pl -M -g deprecated-gtk-todo -build \
64         -sourcedir=$(srcdir) \
65         $(CAPCHILD_SRC)
66
67 EXTRA_DIST = \
68         $(GENERATOR_FILES)              \
69         CMakeLists.txt                  \
70         doxygen.cfg.in                  \
71         Makefile.common                 \
72         Makefile.nmake