aboutsummaryrefslogtreecommitdiffstats
path: root/gtk
diff options
context:
space:
mode:
authorAnders Broman <anders.broman@ericsson.com>2011-08-31 13:44:43 +0000
committerAnders Broman <anders.broman@ericsson.com>2011-08-31 13:44:43 +0000
commit007c788f05d5824d7cbabaf3520b0d19b5424420 (patch)
tree5cac0688e91cca4105cd4652601c847a5acdf388 /gtk
parent1cf5a9ce5af3db310dd934852c4b3156aa8b1251 (diff)
Make it possible to add custom tap/GUI files
svn path=/trunk/; revision=38821
Diffstat (limited to 'gtk')
-rw-r--r--gtk/Makefile.am3
-rw-r--r--gtk/Makefile.common12
-rw-r--r--gtk/Makefile_custom.common13
3 files changed, 24 insertions, 4 deletions
diff --git a/gtk/Makefile.am b/gtk/Makefile.am
index 4f12cb97a6..6091417119 100644
--- a/gtk/Makefile.am
+++ b/gtk/Makefile.am
@@ -116,4 +116,5 @@ EXTRA_DIST = \
main_airpcap_toolbar.c \
Makefile.common \
Makefile.nmake \
- CMakeLists.txt
+ CMakeLists.txt \
+ Makefile_custom.common
diff --git a/gtk/Makefile.common b/gtk/Makefile.common
index d74cf98b88..8cf4e851c5 100644
--- a/gtk/Makefile.common
+++ b/gtk/Makefile.common
@@ -23,6 +23,9 @@
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+#
+include Makefile_custom.common
+
# Generated header files that we want in the distribution.
GENERATED_HEADER_FILES =
@@ -145,7 +148,8 @@ WIRESHARK_GTK_SRC = \
time_shift_dlg.c \
uat_gui.c \
voip_calls.c \
- webbrowser.c
+ webbrowser.c \
+ $(WIRESHARK_CUSTOM_GTK_SRC)
about_dlg.c main_welcome.c: ../image/wssplash.xpm ../image/wssplash-dev.xpm
main_statusbar.c: expert_indicators.h
@@ -229,7 +233,8 @@ WIRESHARK_TAP_SRC = \
tcp_graph.c \
voip_calls_dlg.c \
wlan_stat_dlg.c \
- wsp_stat.c
+ wsp_stat.c \
+ $(WIRESHARK_CUSTOM_TAP_SRC)
noinst_HEADERS = \
about_dlg.h \
@@ -336,5 +341,6 @@ noinst_HEADERS = \
utf8_entities.h \
voip_calls.h \
voip_calls_dlg.h \
- webbrowser.h
+ webbrowser.h \
+ $(WIRESHARK_CUSTOM_HEADERS)
diff --git a/gtk/Makefile_custom.common b/gtk/Makefile_custom.common
new file mode 100644
index 0000000000..58e639309c
--- /dev/null
+++ b/gtk/Makefile_custom.common
@@ -0,0 +1,13 @@
+#
+# $Id:$
+# You can add custom GUI files here
+#
+
+#Add GUI source files here
+WIRESHARK_CUSTOM_GTK_SRC = \
+
+#Add your tap source files here:
+WIRESHARK_CUSTOM_TAP_SRC = \
+
+#Add headers here:
+WIRESHARK_CUSTOM_HEADERS = \ \ No newline at end of file