aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLev Walkin <vlm@lionet.info>2004-08-16 11:40:12 +0000
committerLev Walkin <vlm@lionet.info>2004-08-16 11:40:12 +0000
commitceea066275c34e9e27151a5e6839e72183b8511f (patch)
tree89f3ef183db36a17992ed9004b26b24161f3fd8e
parent7415bffa22305a2d339bdc0c79633f0e5796e820 (diff)
tlv decoder
-rw-r--r--asn1c/Makefile.am3
-rw-r--r--asn1c/Makefile.in11
-rw-r--r--asn1c/asn1c.c2
3 files changed, 10 insertions, 6 deletions
diff --git a/asn1c/Makefile.am b/asn1c/Makefile.am
index b9128ae8..b883f622 100644
--- a/asn1c/Makefile.am
+++ b/asn1c/Makefile.am
@@ -16,7 +16,8 @@ LDADD = \
${top_builddir}/libasn1print/libasn1print.la \
${top_builddir}/libasn1compiler/libasn1compiler.la
-asn1c_SOURCES = asn1c.c decoder.c decoder.h
+asn1c_SOURCES = asn1c.c \
+ tlv_decoder.c tlv_decoder.h
bin_PROGRAMS = asn1c
diff --git a/asn1c/Makefile.in b/asn1c/Makefile.in
index b07dc6f0..311957cf 100644
--- a/asn1c/Makefile.in
+++ b/asn1c/Makefile.in
@@ -53,7 +53,7 @@ CONFIG_CLEAN_FILES =
am__installdirs = "$(DESTDIR)$(bindir)" "$(DESTDIR)$(man1dir)"
binPROGRAMS_INSTALL = $(INSTALL_PROGRAM)
PROGRAMS = $(bin_PROGRAMS)
-am_asn1c_OBJECTS = asn1c.$(OBJEXT) decoder.$(OBJEXT)
+am_asn1c_OBJECTS = asn1c.$(OBJEXT) tlv_decoder.$(OBJEXT)
asn1c_OBJECTS = $(am_asn1c_OBJECTS)
asn1c_LDADD = $(LDADD)
asn1c_DEPENDENCIES = ${top_builddir}/libasn1parser/libasn1parser.la \
@@ -63,7 +63,8 @@ asn1c_DEPENDENCIES = ${top_builddir}/libasn1parser/libasn1parser.la \
DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir)
depcomp = $(SHELL) $(top_srcdir)/depcomp
am__depfiles_maybe = depfiles
-@AMDEP_TRUE@DEP_FILES = ./$(DEPDIR)/asn1c.Po ./$(DEPDIR)/decoder.Po
+@AMDEP_TRUE@DEP_FILES = ./$(DEPDIR)/asn1c.Po \
+@AMDEP_TRUE@ ./$(DEPDIR)/tlv_decoder.Po
COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
$(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
LTCOMPILE = $(LIBTOOL) --mode=compile $(CC) $(DEFS) \
@@ -213,7 +214,9 @@ LDADD = \
${top_builddir}/libasn1print/libasn1print.la \
${top_builddir}/libasn1compiler/libasn1compiler.la
-asn1c_SOURCES = asn1c.c decoder.c decoder.h
+asn1c_SOURCES = asn1c.c \
+ tlv_decoder.c tlv_decoder.h
+
dist_man1_MANS = asn1c.1
check_SCRIPTS = check-parsing.sh
TESTS = check-parsing.sh
@@ -291,7 +294,7 @@ distclean-compile:
-rm -f *.tab.c
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/asn1c.Po@am__quote@
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/decoder.Po@am__quote@
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/tlv_decoder.Po@am__quote@
.c.o:
@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \
diff --git a/asn1c/asn1c.c b/asn1c/asn1c.c
index 6ebebe0d..dc55f855 100644
--- a/asn1c/asn1c.c
+++ b/asn1c/asn1c.c
@@ -19,7 +19,7 @@
#include <asn1c_compat.h> /* Portable basename(3) and dirname(3) */
-#include "decoder.h" /* -t: decode TL[V?] string */
+#include "tlv_decoder.h" /* -t: decode TL[V?] string */
static void usage(char *av0); /* Print the Usage screen and exit(EX_USAGE) */