blob: 44131d7a41b60ce8382381c9b169c85e0a5dc882 [file] [log] [blame]
Lev Walkinf15320b2004-06-03 03:38:44 +00001
Lev Walkinf15320b2004-06-03 03:38:44 +00002AM_CFLAGS = @ADD_CFLAGS@
Lev Walkinb45e0672004-08-18 05:42:05 +00003AM_CPPFLAGS = \
Lev Walkin3d0b5a32004-08-18 05:43:55 +00004 -I$(top_srcdir)/libasn1parser
Lev Walkinf15320b2004-06-03 03:38:44 +00005
6noinst_LTLIBRARIES = libasn1fix.la
7
Lev Walkinb45e0672004-08-18 05:42:05 +00008libasn1fix_la_SOURCES = \
9 asn1fix.c asn1fix.h \
10 asn1fix_internal.h \
11 asn1fix_misc.c asn1fix_misc.h \
12 asn1fix_value.c asn1fix_value.h \
13 asn1fix_compat.c asn1fix_compat.h \
14 asn1fix_constr.c asn1fix_constr.h \
15 asn1fix_cstring.c asn1fix_cstring.h \
16 asn1fix_retrieve.c asn1fix_retrieve.h \
17 asn1fix_bitstring.c asn1fix_bitstring.h \
18 asn1fix_constraint.c asn1fix_constraint.h \
19 asn1fix_integer.c asn1fix_integer.h \
20 asn1fix_crange.c asn1fix_crange.h \
21 asn1fix_dereft.c asn1fix_dereft.h \
22 asn1fix_derefv.c asn1fix_derefv.h \
23 asn1fix_export.c asn1fix_export.h \
24 asn1fix_param.c asn1fix_param.h \
25 asn1fix_class.c asn1fix_class.h \
26 asn1fix_tags.c asn1fix_tags.h \
27 asn1fix_enum.c asn1fix_enum.h \
Lev Walkincb4cd5b2006-03-14 15:23:06 +000028 asn1fix_cws.c asn1fix_cws.h \
Lev Walkinb45e0672004-08-18 05:42:05 +000029 asn1fix_constraint_compat.c
Lev Walkinf15320b2004-06-03 03:38:44 +000030
Lev Walkinb45e0672004-08-18 05:42:05 +000031check_fixer_LDADD = $(noinst_LTLIBRARIES) \
Lev Walkinb45e0672004-08-18 05:42:05 +000032 $(top_builddir)/libasn1parser/libasn1parser.la
Lev Walkine0d321a2014-09-11 01:28:57 -070033check_fixer_CPPFLAGS = -DTOP_SRCDIR=${top_srcdir} $(AM_CPPFLAGS)
Lev Walkinf15320b2004-06-03 03:38:44 +000034
Lev Walkin3b2278a2016-01-24 16:43:50 -080035check_crange_SOURCES = asn1fix_crange.c asn1fix_constraint_compat.c
36check_crange_CPPFLAGS = -DUNIT_TEST $(AM_CPPFLAGS)
37check_crange_LDADD = $(noinst_LTLIBRARIES) \
38 $(top_builddir)/libasn1parser/libasn1parser.la
39
40check_PROGRAMS = check_crange check_fixer
41
42TESTS = ${check_PROGRAMS}
Lev Walkinb45e0672004-08-18 05:42:05 +000043