aboutsummaryrefslogtreecommitdiffstats
path: root/ui/qt/Makefile.common
blob: 3cb2849a8f785013f348ccb722ab13d183d7ef5b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
# Makefile.common
#     Contains the stuff from Makefile.am and Makefile.nmake that is
#     a) common to both files and
#     b) portable between both files
#
# $Id$
#
# Wireshark - Network traffic analyzer
# By Gerald Combs <gerald@wireshark.org>
# Copyright 1998 Gerald Combs
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
# as published by the Free Software Foundation; either version 2
# of the License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.

#
include Makefile_custom.common

# Generated header files that we want in the distribution.
GENERATED_HEADER_FILES =

# Generated header files that we don't want in the distribution.
GENERATED_NODIST_HEADER_FILES = \
	ui_file_set_dialog.h \
	ui_main_welcome.h \
	ui_main_window.h \
	ui_packet_range_group_box.h

# Generated C source files that we want in the distribution.
GENERATED_C_FILES =

# Generated C source files that we don't want in the distribution.
GENERATED_NODIST_C_FILES =

# Generated C++ source files that we want in the distribution.
GENERATED_CPP_FILES =

# Generated C++ source files that we don't want in the distribution.
GENERATED_NODIST_CPP_FILES = \
	$(MOC_SRC) \
	$(QRC_SRC)

# All the generated files we want in the distribution.
GENERATED_FILES = \
	$(GENERATED_HEADER_FILES) \
	$(GENERATED_C_FILES) \
	$(GENERATED_CPP_FILES)

# All the generated files we don't want in the distribution.
GENERATED_NODIST_FILES = \
	$(GENERATED_NODIST_HEADER_FILES) \
	$(GENERATED_NODIST_C_FILES) \
	$(GENERATED_NODIST_CPP_FILES)

# Files that generate compileable files
GENERATOR_FILES =

#
# Headers that have to be run through moc.
#
MOC_HDRS = \
	byte_view_tab.h \
	byte_view_text.h \
	capture_file_dialog.h \
	capture_info_dialog.h \
	capture_interface_dialog.h \
	color_dialog.h \
	color_utils.h \
	display_filter_combo.h \
	display_filter_edit.h \
	export_dissection_dialog.h \
	file_set_dialog.h \
	interface_tree.h \
	label_stack.h \
	main_status_bar.h \
	main_welcome.h \
	main_window.h \
	monospace_font.h \
	packet_format_group_box.h \
	packet_list.h \
	packet_list_model.h \
	packet_range_group_box.h \
	progress_bar.h \
	proto_tree.h \
	recent_file_status.h \
	simple_dialog_qt.h \
	sparkline_delegate.h \
	syntax_line_edit.h \
	wireshark_application.h

#
# The .moc.cpp files generated from them.
# We do *not* include these in the distribution; if you have the Qt SDK
# installed, so that you can build Qt-based applications, you have moc
# installed.
#
MOC_SRC = $(MOC_HDRS:.h=.moc.cpp)

#
# .qrc files.
#
# Should QRC_FILES or QRC_SRC depend on QRC_IMAGES?
QRC_FILES = \
	../../image/display_filter.qrc \
	../../image/status.qrc \
	../../image/toolbar.qrc \
	i18n.qrc \
	welcome.qrc

#
# The .rcc.cpp files generated from them.
# We do *not* include these in the distribution; if you have the Qt SDK
# installed, so that you can build Qt-based applications, you have moc
# installed.
#
QRC_SRC = $(QRC_FILES:.qrc=.rcc.cpp)

WIRESHARK_QT_SRC = \
	byte_view_tab.cpp \
	byte_view_text.cpp \
	capture_file_dialog.cpp \
	capture_info_dialog.cpp \
	capture_interface_dialog.cpp \
	color_dialog.cpp \
	color_utils.cpp \
	display_filter_combo.cpp \
	display_filter_edit.cpp \
	export_dissection_dialog.cpp \
	file_set_dialog.cpp \
	interface_tree.cpp \
	label_stack.cpp \
	main_status_bar.cpp \
	main_welcome.cpp \
	main_window.cpp \
	main_window_slots.cpp \
	monospace_font.cpp \
	packet_format_group_box.cpp \
	packet_list.cpp \
	packet_list_model.cpp \
	packet_list_record.cpp \
	packet_range_group_box.cpp \
	progress_bar.cpp \
	proto_tree.cpp \
	qt_ui_utils.cpp \
	recent_file_status.cpp \
	simple_dialog_qt.cpp \
	sparkline_delegate.cpp \
	syntax_line_edit.cpp \
	wireshark_application.cpp

noinst_HEADERS = \
	$(MOC_HDRS) \
	packet_list_record.h \
	qt_ui_utils.h