blob: 65316be65b1cc2c9ce53a835b02b7169f8c44cb1 [file] [log] [blame]
vlmfa67ddc2004-06-03 03:38:44 +00001
vlmfa67ddc2004-06-03 03:38:44 +00002AM_CFLAGS = @ADD_CFLAGS@
vlmb5be8c32004-08-18 05:42:05 +00003AM_CPPFLAGS = \
vlmd3d0fbd2004-08-18 05:43:55 +00004 -I$(top_srcdir)/libasn1parser
vlmfa67ddc2004-06-03 03:38:44 +00005
6noinst_LTLIBRARIES = libasn1fix.la
7
8libasn1fix_la_LDFLAGS = -all-static
vlmb5be8c32004-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 \
vlmeafceff2006-03-14 15:23:06 +000029 asn1fix_cws.c asn1fix_cws.h \
vlmb5be8c32004-08-18 05:42:05 +000030 asn1fix_constraint_compat.c
vlmfa67ddc2004-06-03 03:38:44 +000031
32check_PROGRAMS = check_fixer
33
vlmb5be8c32004-08-18 05:42:05 +000034check_fixer_LDADD = $(noinst_LTLIBRARIES) \
vlmb5be8c32004-08-18 05:42:05 +000035 $(top_builddir)/libasn1parser/libasn1parser.la
36check_fixer_DEPENDENCIES = $(check_fixer_LDADD)
vlmfa67ddc2004-06-03 03:38:44 +000037
38TESTS_ENVIRONMENT= ./check_fixer
39TESTS = ${top_srcdir}/tests/*.asn1
40## TESTS = ${check_PROGRAMS} # This is an alternate form of testing
vlmb5be8c32004-08-18 05:42:05 +000041