summaryrefslogtreecommitdiff
path: root/plugins/stats_tree/Makefile.common
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2013-02-09 05:31:15 +0000
committerGuy Harris <guy@alum.mit.edu>2013-02-09 05:31:15 +0000
commite30d2b5001ae68f7d71e20f290f5a6116243994f (patch)
tree2d000509f1b77ca60727b9d7340df7b73128ad80 /plugins/stats_tree/Makefile.common
parent4aae84271d346f95a68225aefd84207aa4505679 (diff)
downloadwireshark-e30d2b5001ae68f7d71e20f290f5a6116243994f.tar.gz
Make the other plugin makefiles use the new style introduced in the MATE
makefiles. svn path=/trunk/; revision=47579
Diffstat (limited to 'plugins/stats_tree/Makefile.common')
-rw-r--r--plugins/stats_tree/Makefile.common12
1 files changed, 9 insertions, 3 deletions
diff --git a/plugins/stats_tree/Makefile.common b/plugins/stats_tree/Makefile.common
index e81f4f4754..da461d8097 100644
--- a/plugins/stats_tree/Makefile.common
+++ b/plugins/stats_tree/Makefile.common
@@ -26,11 +26,17 @@
# the name of the plugin
PLUGIN_NAME = stats_tree
-# the tap sources
-TAP_SRC = \
+# Non-generated sources
+NONGENERATED_C_FILES = \
+ $(NONGENERATED_REGISTER_C_FILES) \
stats_tree_plugin.c \
pinfo_stats_tree.c
-TAP_INCLUDES = \
+# Headers.
+CLEAN_HEADER_FILES = \
pinfo_stats_tree.h
+HEADER_FILES = \
+ $(CLEAN_HEADER_FILES)
+
+include ../Makefile.common.inc