Fix bad sync.
[shishi.git] / asn1 / lib / Makefile.am
blob06738f55eeca3ee4f924ce2f03a0e30f355eb53c
1 include_HEADERS = libtasn1.h 
3 EXTRA_DIST = libtasn1.h der.h asn1-api.tex mem.h gstr.h errors.h \
4              defines.h int.h parser_aux.h structure.h errors_int.h \
5              element.h asn1-api.tex
7 lib_LTLIBRARIES = libtasn1.la
9 # Separate so we can create the documentation
10 COBJECTS = ASN1.y decoding.c gstr.c errors.c parser_aux.c \
11            structure.c element.c coding.c
13 libtasn1_la_SOURCES = $(COBJECTS) 
15 libtasn1_la_LDFLAGS = -no-undefined -version-info $(LT_CURRENT):$(LT_REVISION):$(LT_AGE)
17 asn1-api.tex: $(COBJECTS)
18         @echo "% \\newpage" > asn1-api.tex
19         @for i in $(COBJECTS); \
20         do echo -n "Creating documentation for file $$i... " && $(PERL) ../doc/scripts/gdoc -tex $$i >> asn1-api.tex \
21         && echo "ok"; \
22         done
24 all-local: asn1-api.tex