mirror of
https://salsa.debian.org/freeipa-team/freeipa.git
synced 2024-12-23 15:40:01 -06:00
3a41b3bb88
Most of the logic was unnecessary and wrong. This caused make install to fail. This commit removes unnecessary declarations and creates static library which is not installed. make install in asn1 subdirectory is now passing (and doing nothing). https://fedorahosted.org/freeipa/ticket/6418 Reviewed-By: Martin Basti <mbasti@redhat.com> Reviewed-By: Christian Heimes <cheimes@redhat.com>
43 lines
780 B
Makefile
43 lines
780 B
Makefile
libasn1c_la_SOURCES = \
|
|
INTEGER.c \
|
|
NativeEnumerated.c \
|
|
NativeInteger.c \
|
|
asn_SEQUENCE_OF.c \
|
|
asn_SET_OF.c \
|
|
constr_CHOICE.c \
|
|
constr_SEQUENCE.c \
|
|
constr_SEQUENCE_OF.c \
|
|
constr_SET_OF.c \
|
|
OCTET_STRING.c \
|
|
BIT_STRING.c \
|
|
asn_codecs_prim.c \
|
|
ber_tlv_length.c \
|
|
ber_tlv_tag.c \
|
|
ber_decoder.c \
|
|
der_encoder.c \
|
|
constr_TYPE.c \
|
|
constraints.c \
|
|
xer_support.c \
|
|
xer_decoder.c \
|
|
xer_encoder.c \
|
|
per_support.c \
|
|
per_decoder.c \
|
|
per_encoder.c \
|
|
per_opentype.c \
|
|
Int32.c \
|
|
GetKeytabControl.c \
|
|
GKNewKeys.c \
|
|
GKCurrentKeys.c \
|
|
GKReply.c \
|
|
KrbKey.c \
|
|
TypeValuePair.c
|
|
|
|
|
|
AM_CPPFLAGS = -I../../util
|
|
|
|
noinst_LTLIBRARIES=libasn1c.la
|
|
|
|
regenerate:
|
|
asn1c -fskeletons-copy -fnative-types ipa.asn1
|
|
rm -f converter-sample.c Makefile.am.sample
|