]> sjero.net Git - linphone/blob - tools/Makefile.am
Fix uninitialized in xml2lpc_test
[linphone] / tools / Makefile.am
1 ## Process this file with automake to produce Makefile.in
2
3 AM_CPPFLAGS=\
4         -I$(top_srcdir) \
5         -I$(top_srcdir)/coreapi \
6         -I$(top_srcdir)/exosip
7
8 COMMON_CFLAGS=\
9         -DIN_LINPHONE \
10         $(LIBXML2_CFLAGS) \
11         $(ORTP_CFLAGS) \
12         $(STRICT_OPTIONS)
13
14 if BUILD_TOOLS
15
16 lib_LTLIBRARIES=libxml2lpc.la
17
18 libxml2lpc_la_SOURCES=xml2lpc.c xml2lpc.h
19 libxml2lpc_la_CFLAGS=$(COMMON_CFLAGS)
20 libxml2lpc_la_LIBADD=\
21         $(LIBXML2_LIBS)
22
23 bin_PROGRAMS=xml2lpc_test
24
25 xml2lpc_test_SOURCES=xml2lpc_test.c
26 xml2lpc_test_CFLAGS=$(COMMON_CFLAGS)
27 xml2lpc_test_LDADD=$(top_builddir)/coreapi/liblinphone.la libxml2lpc.la
28
29 endif
30
31