diff options
author | Simon Josefsson <simon@josefsson.org> | 2009-03-04 16:29:32 +0100 |
---|---|---|
committer | Simon Josefsson <simon@josefsson.org> | 2009-03-04 16:29:32 +0100 |
commit | 02fe84d83e3011494f055477466b6e9a46830f6f (patch) | |
tree | 06b559f9cd8915fa932fbf62539c4eeebc610803 /lib/Makefile.am | |
parent | 9823fc99477f6f523adf1062bfed834e93d6e365 (diff) | |
download | libtasn1-02fe84d83e3011494f055477466b6e9a46830f6f.tar.gz libtasn1-02fe84d83e3011494f055477466b6e9a46830f6f.tar.bz2 libtasn1-02fe84d83e3011494f055477466b6e9a46830f6f.zip |
Cleanup.
Diffstat (limited to 'lib/Makefile.am')
-rw-r--r-- | lib/Makefile.am | 25 |
1 files changed, 20 insertions, 5 deletions
diff --git a/lib/Makefile.am b/lib/Makefile.am index 18230af..fb08ef4 100644 --- a/lib/Makefile.am +++ b/lib/Makefile.am @@ -28,11 +28,26 @@ pkgconfig_DATA = libtasn1.pc lib_LTLIBRARIES = libtasn1.la -libtasn1_la_SOURCES = libtasn1.h gstr.h errors.h int.h parser_aux.h \ - structure.h element.h ASN1.y decoding.c gstr.c errors.c \ - parser_aux.c structure.c element.c coding.c libtasn1.map - -libtasn1_la_LDFLAGS = -no-undefined \ +libtasn1_la_SOURCES = \ + ASN1.y \ + coding.c \ + decoding.c \ + element.c \ + element.h \ + errors.c \ + errors.h \ + gstr.c \ + gstr.h \ + int.h \ + libtasn1.h \ + libtasn1.map \ + parser_aux.c \ + parser_aux.h \ + structure.c \ + structure.h + +libtasn1_la_LDFLAGS = \ + -no-undefined \ -version-info $(LT_CURRENT):$(LT_REVISION):$(LT_AGE) if HAVE_LD_VERSION_SCRIPT |