doxygen changes:
[obnox/wireshark/wip.git] / gtk / Makefile.am
1 # Makefile.am
2 # Automake file for the GTK interface routines for Ethereal
3 #
4 # $Id: Makefile.am,v 1.105 2004/06/25 07:10:54 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 include Makefile.common
25
26 noinst_LIBRARIES = libui.a
27
28 CLEANFILES = \
29         libui.a         \
30         *~
31
32 ethereal-tap-register.c: $(ETHEREAL_TAP_SRC) $(top_srcdir)/make-tapreg-dotc
33         @echo Making ethereal-tap-register.c
34         @$(top_srcdir)/make-tapreg-dotc ethereal-tap-register.c $(srcdir) $(ETHEREAL_TAP_SRC)
35
36 noinst_HEADERS = \
37         about_dlg.h     \
38         capture_combo_utils.h \
39         capture_dlg.h   \
40         capture_prefs.h \
41         color_dlg.h     \
42         color_filters.h \
43         color_utils.h   \
44         colors.h        \
45         column_prefs.h  \
46         compat_macros.h \
47         decode_as_dlg.h \
48         dfilter_expr_dlg.h \
49         dlg_utils.h     \
50         endpoint_talkers_table.h \
51         file_dlg.h      \
52         filter_prefs.h  \
53         find_dlg.h      \
54         follow_dlg.h    \
55         font_utils.h    \
56         goto_dlg.h      \
57         gsm_map_stat.h  \
58         gtkglobals.h    \
59         gtk_stat_util.h \
60         gui_prefs.h     \
61         help_dlg.h      \
62         hostlist_table.h \
63         keys.h          \
64         layout_prefs.h  \
65         main.h          \
66         menu.h          \
67         mtp3_stat.h     \
68         nameres_prefs.h \
69         packet_list.h   \
70         packet_win.h    \
71         prefs_dlg.h     \
72         print_prefs.h   \
73         proto_dlg.h     \
74         proto_draw.h    \
75         proto_hier_stats_dlg.h  \
76         range_utils.h \
77         recent.h        \
78         rtp_analysis.h  \
79         rtp_stream.h    \
80         rtp_stream_dlg.h \
81         sat.h           \
82         service_response_time_table.h   \
83         stream_prefs.h  \
84         summary_dlg.h   \
85         supported_protos_dlg.h   \
86         tap_dfilter_dlg.h \
87         tap_menu.h      \
88         text_page.h     \
89         toolbar.h       \
90         ui_util.h       \
91         webbrowser.h
92
93 if USE_GTK2
94 libui_a_SOURCES = \
95         $(ETHEREAL_GTK_SRC) \
96         $(noinst_HEADERS) \
97         $(ETHEREAL_TAP_SRC)
98 else
99 libui_a_SOURCES = \
100         ethclist.c      \
101         ethclist.h      \
102         $(ETHEREAL_GTK_SRC) \
103         $(noinst_HEADERS) \
104         $(ETHEREAL_TAP_SRC)
105 endif
106
107 libui_a_DEPENDENCIES = 
108
109 EXTRA_DIST = \
110         doxygen.cfg.in \
111         Makefile.common \
112         Makefile.nmake \
113         print_mswin.c  \
114         print_mswin.h
115
116 # Common headers
117 AM_CPPFLAGS = -I$(top_srcdir) -I$(top_srcdir)/wiretap
118
119 doxygen:
120 if HAVE_DOXYGEN
121         $(DOXYGEN) doxygen.cfg
122 endif           # HAVE_DOXYGEN
123