aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/dcerpc
diff options
context:
space:
mode:
authorkrj <krj@f5534014-38df-0310-8fa8-9805f1628bb7>2009-10-09 08:55:59 +0000
committerkrj <krj@f5534014-38df-0310-8fa8-9805f1628bb7>2009-10-09 08:55:59 +0000
commit34b9cbc27f23d6cf19ffb4e7063f095f4eb2c947 (patch)
tree44320e6da25d2c101f120338bbaaa9c423e34635 /epan/dissectors/dcerpc
parent2e0c02458461f118ea87183447108dadf6ccda67 (diff)
Introduce intermediate variables: PROTOCOL_NAME and IDL2WRS
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@30417 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'epan/dissectors/dcerpc')
-rw-r--r--epan/dissectors/dcerpc/budb/Makefile9
1 files changed, 6 insertions, 3 deletions
diff --git a/epan/dissectors/dcerpc/budb/Makefile b/epan/dissectors/dcerpc/budb/Makefile
index db6adb9f5b..84a8b7b1ee 100644
--- a/epan/dissectors/dcerpc/budb/Makefile
+++ b/epan/dissectors/dcerpc/budb/Makefile
@@ -1,13 +1,16 @@
# $Id$
-DISSECTOR_FILES=packet-dcerpc-budb.c packet-dcerpc-budb.h
+PROTOCOL_NAME=budb
+IDL2WRS=../idl2wrs
+
+DISSECTOR_FILES=packet-dcerpc-$(PROTOCOL_NAME).c packet-dcerpc-$(PROTOCOL_NAME).h
all: generate_dissector
generate_dissector: $(DISSECTOR_FILES)
-$(DISSECTOR_FILES): ../idl2wrs budb.idl budb.cnf template.c template.h
- ../idl2wrs budb
+$(DISSECTOR_FILES): $(IDL2WRS) $(PROTOCOL_NAME).idl $(PROTOCOL_NAME).cnf template.c template.h
+ $(IDL2WRS) $(PROTOCOL_NAME)
clean:
rm -f ETH_* $(DISSECTOR_FILES)