blob: 51c4a7d477e93aaed3750834e7b3de4921fe5ea8 [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 Walkind9221842017-08-22 01:44:56 -070010libasn1fix_la_SOURCES = \
11 asn1fix.c asn1fix.h \
12 asn1fix_internal.h \
13 asn1fix_misc.c asn1fix_misc.h \
14 asn1fix_value.c asn1fix_value.h \
15 asn1fix_compat.c asn1fix_compat.h \
16 asn1fix_constr.c asn1fix_constr.h \
17 asn1fix_cstring.c asn1fix_cstring.h \
18 asn1fix_retrieve.c asn1fix_retrieve.h \
19 asn1fix_bitstring.c asn1fix_bitstring.h \
20 asn1fix_constraint.c asn1fix_constraint.h \
21 asn1fix_integer.c asn1fix_integer.h \
22 asn1fix_crange.c asn1fix_crange.h \
23 asn1fix_dereft.c asn1fix_dereft.h \
24 asn1fix_derefv.c asn1fix_derefv.h \
25 asn1fix_export.c asn1fix_export.h \
26 asn1fix_param.c asn1fix_param.h \
27 asn1fix_class.c asn1fix_class.h \
28 asn1fix_tags.c asn1fix_tags.h \
29 asn1fix_enum.c asn1fix_enum.h \
30 asn1fix_cws.c asn1fix_cws.h \
31 asn1fix_constraint_compat.c
Lev Walkinf15320b2004-06-03 03:38:44 +000032
Lev Walkine0d321a2014-09-11 01:28:57 -070033check_fixer_CPPFLAGS = -DTOP_SRCDIR=${top_srcdir} $(AM_CPPFLAGS)
Lev Walkind9221842017-08-22 01:44:56 -070034check_fixer_LDADD = $(noinst_LTLIBRARIES) \
35 $(top_builddir)/libasn1common/libasn1common.la \
36 $(top_builddir)/libasn1parser/libasn1parser.la
Lev Walkinf15320b2004-06-03 03:38:44 +000037
Lev Walkin3b2278a2016-01-24 16:43:50 -080038check_crange_SOURCES = asn1fix_crange.c asn1fix_constraint_compat.c
39check_crange_CPPFLAGS = -DUNIT_TEST $(AM_CPPFLAGS)
Lev Walkind9221842017-08-22 01:44:56 -070040check_crange_LDADD = $(noinst_LTLIBRARIES) \
41 $(top_builddir)/libasn1common/libasn1common.la \
42 $(top_builddir)/libasn1parser/libasn1parser.la
Lev Walkin3b2278a2016-01-24 16:43:50 -080043
44check_PROGRAMS = check_crange check_fixer
45
Lev Walkind9221842017-08-22 01:44:56 -070046TESTS_ENVIRONMENT = top_srcdir=${top_srcdir}
Lev Walkin3b2278a2016-01-24 16:43:50 -080047TESTS = ${check_PROGRAMS}
Lev Walkinb45e0672004-08-18 05:42:05 +000048