asn1c/skeletons/Makefile.am

104 lines
4.2 KiB
Makefile
Raw Normal View History

2004-06-03 03:38:44 +00:00
CFLAGS = $(filter-out $(CODE_COVERAGE_CFLAGS), @CFLAGS@)
CFLAGS += ${SKELETONS_CFLAGS} # Put -std=c89 at the end!
2017-09-13 22:52:39 +00:00
2005-03-24 03:30:13 +00:00
dist_pkgdata_DATA = \
2014-09-11 08:28:57 +00:00
${srcdir}/README \
${srcdir}/*.[ch] \
${srcdir}/file-dependencies
2017-03-26 10:11:02 +00:00
smodsdir=$(pkgdatadir)
2014-09-11 08:28:57 +00:00
nobase_dist_smods_DATA = \
standard-modules/README \
standard-modules/ASN1-Object-Identifier-Module.asn1 \
standard-modules/ASN1C-UsefulInformationObjectClasses.asn1
2006-03-06 11:20:57 +00:00
2004-06-03 03:38:44 +00:00
uninstall-local:
-@echo -n " "
-rm -f -r $(DESTDIR)$(pkgdatadir)
2007-07-23 06:48:04 +00:00
2017-10-06 23:35:21 +00:00
check_LTLIBRARIES = libasn1cskeletons.la libasn1cskeletons_32.la
if EXPLICIT_M32
libasn1cskeletons_32_la_CFLAGS = $(CFLAGS_M32)
libasn1cskeletons_32_la_SOURCES = $(libasn1cskeletons_la_SOURCES)
endif
2007-07-23 06:48:04 +00:00
2017-09-27 20:15:21 +00:00
libasn1cskeletons_la_SOURCES = \
ANY.c ANY.h \
BIT_STRING.c BIT_STRING.h \
BIT_STRING_oer.c \
BMPString.c BMPString.h \
BOOLEAN.c BOOLEAN.h \
ENUMERATED.c ENUMERATED.h \
GeneralString.c GeneralString.h \
GeneralizedTime.c GeneralizedTime.h \
GraphicString.c GraphicString.h \
IA5String.c IA5String.h \
INTEGER.c INTEGER.h \
INTEGER_oer.c \
ISO646String.c ISO646String.h \
NULL.c NULL.h \
NativeEnumerated.c NativeEnumerated.h \
NativeEnumerated_oer.c \
NativeInteger.c NativeInteger.h \
NativeInteger_oer.c \
NativeReal.c NativeReal.h \
NumericString.c NumericString.h \
OBJECT_IDENTIFIER.c OBJECT_IDENTIFIER.h \
OCTET_STRING.c OCTET_STRING.h \
OCTET_STRING_oer.c \
OPEN_TYPE.c OPEN_TYPE.h OPEN_TYPE_oer.c \
2017-09-27 20:15:21 +00:00
ObjectDescriptor.c ObjectDescriptor.h \
PrintableString.c PrintableString.h \
REAL.c REAL.h \
RELATIVE-OID.c RELATIVE-OID.h \
T61String.c T61String.h \
TeletexString.c TeletexString.h \
UTCTime.c UTCTime.h \
UTF8String.c UTF8String.h \
UniversalString.c UniversalString.h \
VideotexString.c VideotexString.h \
VisibleString.c VisibleString.h \
asn_SEQUENCE_OF.c asn_SEQUENCE_OF.h \
asn_SET_OF.c asn_SET_OF.h \
asn_application.c asn_application.h \
2017-10-09 01:52:37 +00:00
asn_system.h asn_codecs.h \
2017-09-27 20:15:21 +00:00
asn_codecs_prim.c asn_codecs_prim.h \
2017-10-09 01:52:37 +00:00
asn_internal.h asn_internal.c \
2017-09-27 20:15:21 +00:00
asn_bit_data.c asn_bit_data.h \
asn_random_fill.c asn_random_fill.h \
2017-09-27 20:15:21 +00:00
ber_decoder.c ber_decoder.h \
ber_tlv_length.c ber_tlv_length.h \
ber_tlv_tag.c ber_tlv_tag.h \
constr_CHOICE.c constr_CHOICE.h \
constr_CHOICE_oer.c \
constr_SEQUENCE.c constr_SEQUENCE.h \
constr_SEQUENCE_oer.c \
constr_SEQUENCE_OF.c constr_SEQUENCE_OF.h \
constr_SET.c constr_SET.h \
constr_SET_OF.c constr_SET_OF.h \
constr_SET_OF_oer.c \
constr_TYPE.c constr_TYPE.h \
constraints.c constraints.h \
der_encoder.c der_encoder.h \
oer_decoder.c oer_decoder.h \
oer_encoder.c oer_encoder.h \
oer_support.c oer_support.h \
per_decoder.c per_decoder.h \
per_encoder.c per_encoder.h \
per_opentype.c per_opentype.h \
per_support.c per_support.h \
xer_decoder.c xer_decoder.h \
xer_encoder.c xer_encoder.h \
xer_support.c xer_support.h
2007-07-23 06:48:04 +00:00
check_PROGRAMS = check-converter_example
2017-09-13 04:34:00 +00:00
LDADD = -lm
check_converter_example_CFLAGS = -DNO_ASN_PDU
check_converter_example_SOURCES = converter-example.c
check_converter_example_LDADD = libasn1cskeletons.la