nexmon – Blame information for rev 1

Subversion Repositories:
Rev:
Rev Author Line No. Line
1 office 1 # Makefile.am
2 # Automake file for the common-to-all-toolkits user interface routines
3 # for Wireshark
4 #
5 # Wireshark - Network traffic analyzer
6 # By Gerald Combs <gerald@wireshark.org>
7 # Copyright 1998 Gerald Combs
8 #
9 # This program is free software; you can redistribute it and/or
10 # modify it under the terms of the GNU General Public License
11 # as published by the Free Software Foundation; either version 2
12 # of the License, or (at your option) any later version.
13 #
14 # This program is distributed in the hope that it will be useful,
15 # but WITHOUT ANY WARRANTY; without even the implied warranty of
16 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 # GNU General Public License for more details.
18 #
19 # You should have received a copy of the GNU General Public License
20 # along with this program; if not, write to the Free Software
21 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
22  
23 include $(top_srcdir)/Makefile.am.inc
24  
25 AM_CPPFLAGS = $(INCLUDEDIRS) $(WS_CPPFLAGS) -DDOC_DIR=\"$(docdir)\" \
26 $(GLIB_CFLAGS) $(LIBGCRYPT_CFLAGS) $(LIBGNUTLS_CFLAGS) $(PORTAUDIO_INCLUDES)
27  
28 noinst_LIBRARIES = libui.a libui_dirty.a
29  
30 # Generated header files that we want in the distribution.
31 GENERATED_HEADER_FILES = \
32 text_import_scanner_lex.h
33  
34 # Generated C source files that we want in the distribution.
35 GENERATED_C_FILES =
36  
37 DIRTY_GENERATED_C_FILES = \
38 text_import_scanner.c
39  
40 # All the generated files we want in the distribution.
41 GENERATED_FILES = \
42 $(GENERATED_HEADER_FILES) \
43 $(GENERATED_C_FILES) \
44 $(DIRTY_GENERATED_C_FILES)
45  
46 # Files that generate compileable files
47 GENERATOR_FILES = \
48 text_import_scanner.l
49  
50 WIRESHARK_UI_SRC = \
51 alert_box.c \
52 capture.c \
53 capture_ui_utils.c \
54 commandline.c \
55 console.c \
56 decode_as_utils.c \
57 export_object.c \
58 export_object_dicom.c \
59 export_object_http.c \
60 export_object_smb.c \
61 export_object_tftp.c \
62 export_pdu_ui_utils.c \
63 firewall_rules.c \
64 iface_lists.c \
65 io_graph_item.c \
66 language.c \
67 help_url.c \
68 mcast_stream.c \
69 packet_list_utils.c \
70 persfilepath_opt.c \
71 preference_utils.c \
72 profile.c \
73 proto_hier_stats.c \
74 recent.c \
75 rtp_media.c \
76 rtp_stream.c \
77 service_response_time.c \
78 software_update.c \
79 ssl_key_export.c \
80 tap_export_pdu.c \
81 tap-iax2-analysis.c \
82 tap-rlc-graph.c \
83 tap-rtp-common.c \
84 tap-sctp-analysis.c \
85 tap-sequence-analysis.c \
86 tap-tcp-stream.c \
87 text_import.c \
88 time_shift.c \
89 traffic_table_ui.c \
90 util.c \
91 voip_calls.c
92  
93 WIRESHARK_UI_INCLUDES = \
94 alert_box.h \
95 all_files_wildcard.h \
96 capture.h \
97 capture_globals.h \
98 capture_ui_utils.h \
99 commandline.h \
100 console.h \
101 decode_as_utils.h \
102 export_object.h \
103 export_pdu_ui_utils.h \
104 last_open_dir.h \
105 file_dialog.h \
106 help_url.h \
107 packet_list_utils.h \
108 firewall_rules.h \
109 iface_lists.h \
110 io_graph_item.h \
111 language.h \
112 mcast_stream.h \
113 main_statusbar.h \
114 persfilepath_opt.h \
115 preference_utils.h \
116 profile.h \
117 progress_dlg.h \
118 proto_hier_stats.h \
119 recent.h \
120 recent_utils.h \
121 rtp_media.h \
122 rtp_stream.h \
123 service_response_time.h \
124 simple_dialog.h \
125 software_update.h \
126 ssl_key_export.h \
127 tap_export_pdu.h \
128 tap-iax2-analysis.h \
129 tap-rlc-graph.h \
130 tap-rtp-analysis.h \
131 tap-rtp-common.h \
132 tap-sctp-analysis.h \
133 tap-sequence-analysis.h \
134 tap-tcp-stream.h \
135 text_import.h \
136 text_import_scanner.h \
137 time_shift.h \
138 traffic_table_ui.h \
139 ui_util.h \
140 util.h \
141 voip_calls.h
142  
143 # All sources that should be put in the source distribution tarball
144 libui_a_SOURCES = \
145 $(WIRESHARK_UI_SRC) \
146 $(WIRESHARK_UI_INCLUDES) \
147 $(GENERATED_HEADER_FILES) \
148 $(GENERATED_C_FILES)
149  
150 libui_dirty_a_SOURCES = \
151 $(DIRTY_GENERATED_C_FILES)
152  
153 libui_dirty_a_CFLAGS = $(GENERATED_CFLAGS)
154  
155 EXTRA_DIST = \
156 .editorconfig \
157 $(GENERATOR_FILES) \
158 CMakeLists.txt \
159 doxygen.cfg.in \
160 win32
161  
162 BUILT_SOURCES = $(GENERATED_HEADER_FILES)
163  
164 CLEANFILES = \
165 doxygen-ui.tag \
166 libui.a \
167 libui_dirty.a \
168 *~
169  
170 MAINTAINERCLEANFILES = \
171 $(GENERATED_FILES) \
172 Makefile.in
173  
174 text_import_scanner_lex.h: text_import_scanner.c
175  
176 doxygen:
177 if HAVE_DOXYGEN
178 $(DOXYGEN) doxygen.cfg
179 endif # HAVE_DOXYGEN
180  
181 wsar_html: doxygen.cfg ../doxygen_global.cfg
182 if HAVE_DOXYGEN
183 (umask 022 ; $(DOXYGEN) doxygen.cfg)
184 endif
185  
186 checkapi: checkapi-base checkapi-todo
187  
188 checkapi-base:
189 $(PERL) $(top_srcdir)/tools/checkAPIs.pl -g deprecated-gtk -build \
190 -sourcedir=$(srcdir) \
191 $(WIRESHARK_UI_SRC)
192  
193 checkapi-todo:
194 $(PERL) $(top_srcdir)/tools/checkAPIs.pl -M -g deprecated-gtk-todo -build \
195 -sourcedir=$(srcdir) \
196 $(WIRESHARK_UI_SRC)