doubango/Makefile.am

44 lines
772 B
Makefile
Raw Normal View History

2012-11-22 00:09:46 +00:00
AUTOMAKE_OPTIONS = foreign dist-tarZ
ACLOCAL_AMFLAGS = -I m4
SUBDIRS = tinySAK \
tinyNET \
tinyHTTP \
tinyXCAP \
tinyIPSec \
tinySMS \
tinySIGCOMP \
tinySDP \
2014-04-28 21:16:53 +00:00
tinyBFCP \
2012-11-22 00:09:46 +00:00
tinyMSRP \
tinyMEDIA \
2012-12-03 03:11:21 +00:00
tinyRTP \
2012-11-22 00:09:46 +00:00
tinyDAV \
2014-02-26 01:43:32 +00:00
tinySIP \
\
bindings
if TARGET_OS_IS_ANDROID
SUBDIRS += plugins/audio_opensles
endif
pkgconfigdir = $(libdir)/pkgconfig
2013-08-16 15:09:20 +00:00
pkgconfig_DATA = doubango.pc
2014-02-26 01:43:32 +00:00
if CROSS_COMPILING
install-data-hook:
echo "Cross-compilation is active. Do not run ldconfig";
else
2013-08-16 15:09:20 +00:00
install-data-hook:
$(MKDIR_P) $(DESTDIR)/etc/ld.so.conf.d
echo "$(libdir)" > $(DESTDIR)/etc/ld.so.conf.d/doubango.conf
ldconfig
2014-02-26 01:43:32 +00:00
endif
2013-08-16 15:09:20 +00:00
2014-02-26 01:43:32 +00:00
if CROSS_COMPILING
echo "Cross-compilation is active. Do not remove libs";
else
2013-08-16 15:09:20 +00:00
uninstall-hook:
2014-02-26 01:43:32 +00:00
rm -f $(DESTDIR)/etc/ld.so.conf.d/doubango.conf
endif