asn1c/libasn1fix/Makefile.am

47 lines
1.7 KiB
Makefile
Raw Normal View History

@CODE_COVERAGE_RULES@
2004-06-03 03:38:44 +00:00
AM_CFLAGS = @ADD_CFLAGS@
2017-08-22 08:44:56 +00:00
AM_CPPFLAGS = \
-I$(top_srcdir)/libasn1common \
-I$(top_srcdir)/libasn1parser
2004-06-03 03:38:44 +00:00
noinst_LTLIBRARIES = libasn1fix.la
2017-08-22 08:44:56 +00:00
libasn1fix_la_SOURCES = \
asn1fix.c asn1fix.h \
asn1fix_internal.h \
asn1fix_misc.c asn1fix_misc.h \
asn1fix_value.c asn1fix_value.h \
asn1fix_compat.c asn1fix_compat.h \
asn1fix_constr.c asn1fix_constr.h \
asn1fix_cstring.c asn1fix_cstring.h \
asn1fix_retrieve.c asn1fix_retrieve.h \
asn1fix_bitstring.c asn1fix_bitstring.h \
asn1fix_constraint.c asn1fix_constraint.h \
asn1fix_integer.c asn1fix_integer.h \
asn1fix_crange.c asn1fix_crange.h \
asn1fix_dereft.c asn1fix_dereft.h \
asn1fix_derefv.c asn1fix_derefv.h \
asn1fix_export.c asn1fix_export.h \
asn1fix_param.c asn1fix_param.h \
asn1fix_class.c asn1fix_class.h \
asn1fix_tags.c asn1fix_tags.h \
asn1fix_enum.c asn1fix_enum.h \
asn1fix_cws.c asn1fix_cws.h \
asn1fix_constraint_compat.c
2014-09-11 08:28:57 +00:00
check_fixer_CPPFLAGS = -DTOP_SRCDIR=${top_srcdir} $(AM_CPPFLAGS)
2004-06-03 03:38:44 +00:00
2016-01-25 00:43:50 +00:00
check_crange_SOURCES = asn1fix_crange.c asn1fix_constraint_compat.c
check_crange_CPPFLAGS = -DUNIT_TEST $(AM_CPPFLAGS)
2017-11-21 07:18:17 +00:00
LDADD = $(noinst_LTLIBRARIES) \
$(top_builddir)/libasn1parser/libasn1parser.la \
$(top_builddir)/libasn1common/libasn1common.la
2016-01-25 00:43:50 +00:00
check_PROGRAMS = check_crange check_fixer
2017-08-22 08:44:56 +00:00
TESTS_ENVIRONMENT = top_srcdir=${top_srcdir}
2016-01-25 00:43:50 +00:00
TESTS = ${check_PROGRAMS}
2004-08-18 05:42:05 +00:00