aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2005-09-15 23:17:42 +0000
committerGuy Harris <guy@alum.mit.edu>2005-09-15 23:17:42 +0000
commitc6cb7b6367d6faa9aa32e08158d74e9bfd7d826d (patch)
tree3bcf4c97198816f88bf5c701a13384e72c8615ef
parent756421af732f5f83e16cd990c039e94ab1647c8e (diff)
Add a Makefile.
svn path=/trunk/; revision=15827
-rw-r--r--asn1/spnego/Makefile17
1 files changed, 17 insertions, 0 deletions
diff --git a/asn1/spnego/Makefile b/asn1/spnego/Makefile
new file mode 100644
index 0000000000..70f5cc14e0
--- /dev/null
+++ b/asn1/spnego/Makefile
@@ -0,0 +1,17 @@
+# $Id$
+
+DISSECTOR_FILES=packet-spnego.c packet-spnego.h
+
+all: generate_dissector
+
+generate_dissector: $(DISSECTOR_FILES)
+
+$(DISSECTOR_FILES): ../../tools/asn2eth.py spnego.asn packet-spnego-template.c packet-spnego-template.h spnego.cnf
+ python ../../tools/asn2eth.py -X -b -e -p spnego -c spnego.cnf -s packet-spnego-template spnego.asn
+
+clean:
+ rm -f parsetab.py $(DISSECTOR_FILES)
+
+copy_files: generate_dissector
+ cp $(DISSECTOR_FILES) ../../epan/dissectors
+