aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/unistim/Makefile.common
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/unistim/Makefile.common')
-rw-r--r--plugins/unistim/Makefile.common16
1 files changed, 13 insertions, 3 deletions
diff --git a/plugins/unistim/Makefile.common b/plugins/unistim/Makefile.common
index 873fd1f30f..e0b8bde53c 100644
--- a/plugins/unistim/Makefile.common
+++ b/plugins/unistim/Makefile.common
@@ -27,11 +27,16 @@
# the name of the plugin
PLUGIN_NAME = unistim
-# the dissector sources (without any helpers)
-DISSECTOR_SRC = \
+# Non-generated sources to be scanned for registration routines
+NONGENERATED_REGISTER_C_FILES = \
packet-unistim.c
-DISSECTOR_INCLUDES = \
+# Non-generated sources
+NONGENERATED_C_FILES = \
+ $(NONGENERATED_REGISTER_C_FILES)
+
+# Headers.
+CLEAN_HEADER_FILES = \
audio.h \
basic.h \
broadcast.h \
@@ -42,3 +47,8 @@ DISSECTOR_INCLUDES = \
network.h \
uftp.h \
packet-unistim.h
+
+HEADER_FILES = \
+ $(CLEAN_HEADER_FILES)
+
+include ../Makefile.common.inc