converter-sample.c instead of asn-decoder-template.c


git-svn-id: https://asn1c.svn.sourceforge.net/svnroot/asn1c/trunk@1139 59561ff5-6e30-0410-9f3c-9617f08c8826
diff --git a/examples/sample.source.TAP3/Makefile b/examples/sample.source.TAP3/Makefile
index abd99c9..2483359 100644
--- a/examples/sample.source.TAP3/Makefile
+++ b/examples/sample.source.TAP3/Makefile
@@ -700,9 +700,9 @@
 	@touch DataInterChange.c
 	make
 
-ASN_DECODER_TEMPLATE=../../skeletons/asn-decoder-template.c
-$(TARGET).o: $(ASN_DECODER_TEMPLATE)
-	$(CC) $(CFLAGS) -Dasn_DEF=asn_DEF_DataInterChange -o $(TARGET).o -c $(ASN_DECODER_TEMPLATE)
+ASN_CONVERTER=../../skeletons/converter-sample.c
+$(TARGET).o: $(ASN_CONVERTER)
+	$(CC) $(CFLAGS) -Dasn_DEF=asn_DEF_DataInterChange -o $(TARGET).o -c $(ASN_CONVERTER)
 
 distclean: clean
 	rm -f $(ASN_MODULE_SOURCES) $(ASN_MODULE_HEADERS)
diff --git a/examples/sample.source.TAP3/README b/examples/sample.source.TAP3/README
index 4df5994..e3f9a1f 100644
--- a/examples/sample.source.TAP3/README
+++ b/examples/sample.source.TAP3/README
@@ -11,6 +11,9 @@
 OBTAINING THE TAP3 SPECIFICATION
 ================================
 
+Due to licensing restrictions, asn1c can not include the TAP3 ASN.1 module
+in its distribution.
+
 To obtain the TAP3 ASN.1 specification, you should go to
 	http://www.gsmworld.com/using/billing/tap3_legal.html
 and agree with their licensing terms by clicking the "I ACCEPT" button.
@@ -33,23 +36,9 @@
 The tap3dump utility may be used to dump the contents of the BER-encoded
 TAP3 data record file:
 
-	./tap3dump -x tapfile.der	# Print as XML (BASIC-XER)
-
-If necessary, a straightforward modification of the
-	../../skeletons/asn-decoder-template.c
-will allow you to build a converter from the XML (XER) TAP3 format
-back into binary (BER).
+	./tap3dump tapfile.ber	# Print as XML (BASIC-XER)
 
 The full list of recognized command line options may be obtained with
 
 	> ./tap3dump -h
-	Usage: ./tap3dump [options] <data.ber> ...
-	Where options are:
-	  -b <size>    Set the i/o buffer size (default is 8192)
-	  -c           Check ASN.1 constraints after decoding
-	  -d           Enable debugging (-dd is even better)
-	  -n <num>     Process files <num> times
-	  -s <size>    Set the stack usage limit
-	  -p           Print out the decoded contents
-	  -x           Print out as XML