Makefile.am
1.16 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
lib_LTLIBRARIES = libeXosip2.la
#
# Other flags to add someday:
# -Wcast-qual
# -Wwrite-strings
# -Wstrict-prototypes
# -Werror
#
AM_CFLAGS = $(EXOSIP_FLAGS)
libeXosip2_la_SOURCES = \
eXosip.c eXconf.c \
eXregister_api.c eXcall_api.c \
eXmessage_api.c eXtransport.c \
jrequest.c jresponse.c \
jcallback.c jdialog.c \
udp.c jcall.c \
jreg.c eXutils.c \
jevents.c misc.c \
jpipe.c jpipe.h \
jauth.c eXtransport.h \
eXosip2.h
libeXosip2_la_SOURCES+= \
eXtl_udp.c \
eXtl_tcp.c \
eXtl_dtls.c \
eXtl_tls.c
libeXosip2_la_SOURCES+= \
milenage.c \
rijndael.c \
milenage.h \
rijndael.h
if BUILD_MAXSIZE
libeXosip2_la_SOURCES+= \
eXsubscription_api.c eXoptions_api.c \
eXinsubscription_api.c eXpublish_api.c \
jnotify.c jsubscribe.c \
inet_ntop.c inet_ntop.h \
jpublish.c sdp_offans.c
endif
libeXosip2_la_LDFLAGS = -version-info $(LIBEXOSIP_SO_VERSION) -no-undefined
libeXosip2_la_LIBADD = $(EXOSIP_LIB) $(OSIP_LIBS)
AM_CPPFLAGS = -I$(top_srcdir) -I$(top_srcdir)/include $(OSIP_CFLAGS)