blob: 5e506ccd22ba59478d10ea95aa145c0ef2eff74a [file] [log] [blame]
Vasil Velichkove3187592016-07-18 22:46:36 +03001@CODE_COVERAGE_RULES@
Lev Walkinf15320b2004-06-03 03:38:44 +00002
Lev Walkinf15320b2004-06-03 03:38:44 +00003AM_CFLAGS = @ADD_CFLAGS@
Lev Walkinb45e0672004-08-18 05:42:05 +00004AM_CPPFLAGS = \
Lev Walkin3d0b5a32004-08-18 05:43:55 +00005 -I$(top_srcdir)/libasn1parser
Lev Walkinf15320b2004-06-03 03:38:44 +00006
7noinst_LTLIBRARIES = libasn1fix.la
8
Lev Walkinb45e0672004-08-18 05:42:05 +00009libasn1fix_la_SOURCES = \
10 asn1fix.c asn1fix.h \
11 asn1fix_internal.h \
12 asn1fix_misc.c asn1fix_misc.h \
13 asn1fix_value.c asn1fix_value.h \
14 asn1fix_compat.c asn1fix_compat.h \
15 asn1fix_constr.c asn1fix_constr.h \
16 asn1fix_cstring.c asn1fix_cstring.h \
17 asn1fix_retrieve.c asn1fix_retrieve.h \
18 asn1fix_bitstring.c asn1fix_bitstring.h \
19 asn1fix_constraint.c asn1fix_constraint.h \
20 asn1fix_integer.c asn1fix_integer.h \
21 asn1fix_crange.c asn1fix_crange.h \
22 asn1fix_dereft.c asn1fix_dereft.h \
23 asn1fix_derefv.c asn1fix_derefv.h \
24 asn1fix_export.c asn1fix_export.h \
25 asn1fix_param.c asn1fix_param.h \
26 asn1fix_class.c asn1fix_class.h \
27 asn1fix_tags.c asn1fix_tags.h \
28 asn1fix_enum.c asn1fix_enum.h \
Lev Walkincb4cd5b2006-03-14 15:23:06 +000029 asn1fix_cws.c asn1fix_cws.h \
Lev Walkinb45e0672004-08-18 05:42:05 +000030 asn1fix_constraint_compat.c
Lev Walkinf15320b2004-06-03 03:38:44 +000031
Lev Walkinb45e0672004-08-18 05:42:05 +000032check_fixer_LDADD = $(noinst_LTLIBRARIES) \
Lev Walkinb45e0672004-08-18 05:42:05 +000033 $(top_builddir)/libasn1parser/libasn1parser.la
Lev Walkine0d321a2014-09-11 01:28:57 -070034check_fixer_CPPFLAGS = -DTOP_SRCDIR=${top_srcdir} $(AM_CPPFLAGS)
Lev Walkinf15320b2004-06-03 03:38:44 +000035
Lev Walkin3b2278a2016-01-24 16:43:50 -080036check_crange_SOURCES = asn1fix_crange.c asn1fix_constraint_compat.c
37check_crange_CPPFLAGS = -DUNIT_TEST $(AM_CPPFLAGS)
38check_crange_LDADD = $(noinst_LTLIBRARIES) \
39 $(top_builddir)/libasn1parser/libasn1parser.la
40
41check_PROGRAMS = check_crange check_fixer
42
Lev Walkin04532cc2016-03-14 03:09:00 -070043TESTS_ENVIRONMENT = ASN1_TESTS_DIR=${top_srcdir}/tests
Lev Walkin3b2278a2016-01-24 16:43:50 -080044TESTS = ${check_PROGRAMS}
Lev Walkinb45e0672004-08-18 05:42:05 +000045