blob: adb59e0c3d0552d5bbd22c02ed4cd78a0927a791 [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 Walkind9221842017-08-22 01:44:56 -07004AM_CPPFLAGS = \
5 -I$(top_srcdir)/libasn1common \
6 -I$(top_srcdir)/libasn1parser
Lev Walkinf15320b2004-06-03 03:38:44 +00007
8noinst_LTLIBRARIES = libasn1fix.la
9
Lev Walkin4bc278d2017-11-20 23:10:30 -080010libasn1fix_la_LIBDADD = $(top_builddir)/libasn1common/libasn1common.la
Lev Walkind9221842017-08-22 01:44:56 -070011libasn1fix_la_SOURCES = \
12 asn1fix.c asn1fix.h \
13 asn1fix_internal.h \
14 asn1fix_misc.c asn1fix_misc.h \
15 asn1fix_value.c asn1fix_value.h \
16 asn1fix_compat.c asn1fix_compat.h \
17 asn1fix_constr.c asn1fix_constr.h \
18 asn1fix_cstring.c asn1fix_cstring.h \
19 asn1fix_retrieve.c asn1fix_retrieve.h \
20 asn1fix_bitstring.c asn1fix_bitstring.h \
21 asn1fix_constraint.c asn1fix_constraint.h \
22 asn1fix_integer.c asn1fix_integer.h \
23 asn1fix_crange.c asn1fix_crange.h \
24 asn1fix_dereft.c asn1fix_dereft.h \
25 asn1fix_derefv.c asn1fix_derefv.h \
26 asn1fix_export.c asn1fix_export.h \
27 asn1fix_param.c asn1fix_param.h \
28 asn1fix_class.c asn1fix_class.h \
29 asn1fix_tags.c asn1fix_tags.h \
30 asn1fix_enum.c asn1fix_enum.h \
31 asn1fix_cws.c asn1fix_cws.h \
32 asn1fix_constraint_compat.c
Lev Walkinf15320b2004-06-03 03:38:44 +000033
Lev Walkine0d321a2014-09-11 01:28:57 -070034check_fixer_CPPFLAGS = -DTOP_SRCDIR=${top_srcdir} $(AM_CPPFLAGS)
Lev Walkind9221842017-08-22 01:44:56 -070035check_fixer_LDADD = $(noinst_LTLIBRARIES) \
36 $(top_builddir)/libasn1common/libasn1common.la \
37 $(top_builddir)/libasn1parser/libasn1parser.la
Lev Walkinf15320b2004-06-03 03:38:44 +000038
Lev Walkin3b2278a2016-01-24 16:43:50 -080039check_crange_SOURCES = asn1fix_crange.c asn1fix_constraint_compat.c
40check_crange_CPPFLAGS = -DUNIT_TEST $(AM_CPPFLAGS)
Lev Walkind9221842017-08-22 01:44:56 -070041check_crange_LDADD = $(noinst_LTLIBRARIES) \
42 $(top_builddir)/libasn1common/libasn1common.la \
43 $(top_builddir)/libasn1parser/libasn1parser.la
Lev Walkin3b2278a2016-01-24 16:43:50 -080044
45check_PROGRAMS = check_crange check_fixer
46
Lev Walkind9221842017-08-22 01:44:56 -070047TESTS_ENVIRONMENT = top_srcdir=${top_srcdir}
Lev Walkin3b2278a2016-01-24 16:43:50 -080048TESTS = ${check_PROGRAMS}
Lev Walkinb45e0672004-08-18 05:42:05 +000049