Move color_filters.c and color_filters.h up to the top-level directory,
[obnox/wireshark/wip.git] / gtk / Makefile.am
1 # Makefile.am
2 # Automake file for the GTK interface routines for Ethereal
3 #
4 # $Id$
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_dlg.h   \
39         capture_prefs.h \
40         color_dlg.h     \
41         colors.h        \
42         column_prefs.h  \
43         compat_macros.h \
44         conversations_table.h \
45         decode_as_dlg.h \
46         dfilter_expr_dlg.h \
47         dlg_utils.h     \
48         file_dlg.h      \
49         filter_dlg.h    \
50         find_dlg.h      \
51         follow_dlg.h    \
52         font_utils.h    \
53         goto_dlg.h      \
54         gsm_map_stat.h  \
55         gtkglobals.h    \
56         gtk_stat_util.h \
57         gui_prefs.h     \
58         help_dlg.h      \
59         hostlist_table.h \
60         isprint.h       \
61         keys.h          \
62         layout_prefs.h  \
63         main.h          \
64         menu.h          \
65         mtp3_stat.h     \
66         nameres_prefs.h \
67         packet_list.h   \
68         packet_win.h    \
69         prefs_dlg.h     \
70         print_prefs.h   \
71         proto_dlg.h     \
72         proto_draw.h    \
73         proto_hier_stats_dlg.h  \
74         range_utils.h \
75         recent.h        \
76         rtp_analysis.h  \
77         rtp_stream.h    \
78         rtp_stream_dlg.h \
79         sat.h           \
80         service_response_time_table.h   \
81         stream_prefs.h  \
82         summary_dlg.h   \
83         supported_protos_dlg.h   \
84         tap_dfilter_dlg.h \
85         tap_menu.h      \
86         text_page.h     \
87         toolbar.h       \
88         ui_util.h       \
89         webbrowser.h
90
91 if USE_GTK2
92 libui_a_SOURCES = \
93         $(ETHEREAL_GTK_SRC) \
94         $(noinst_HEADERS) \
95         $(ETHEREAL_TAP_SRC)
96 else
97 libui_a_SOURCES = \
98         ethclist.c      \
99         ethclist.h      \
100         $(ETHEREAL_GTK_SRC) \
101         $(noinst_HEADERS) \
102         $(ETHEREAL_TAP_SRC)
103 endif
104
105 libui_a_DEPENDENCIES = 
106
107 EXTRA_DIST = \
108         doxygen.cfg.in \
109         ethclist.c      \
110         ethclist.h      \
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