2006-12-21 01:30:28 -05:00
|
|
|
#
|
|
|
|
# Makefile.am for sofia-sip/libsofia-sip-ua-glib
|
|
|
|
#
|
|
|
|
# Copyright (C) 2006 Nokia Corporation
|
|
|
|
# Contact: Pekka Pessi <pekka.pessi@nokia.com>
|
|
|
|
# Licensed under LGPL. See file COPYING.
|
|
|
|
#
|
|
|
|
|
|
|
|
AUTOMAKE_OPTIONS = foreign 1.7
|
|
|
|
|
|
|
|
SUBDIRS=su-glib
|
|
|
|
|
|
|
|
GLIB_TARGETS=su-glib/libsu-glib.la
|
|
|
|
|
|
|
|
lib_LTLIBRARIES =
|
|
|
|
if HAVE_GLIB
|
|
|
|
lib_LTLIBRARIES += libsofia-sip-ua-glib.la
|
|
|
|
endif
|
|
|
|
|
|
|
|
libsofia_sip_ua_glib_la_SOURCES =
|
|
|
|
libsofia_sip_ua_glib_la_LIBADD = $(GLIB_TARGETS) $(GLIB_LIBS)
|
|
|
|
|
|
|
|
# set the libtool version info version:revision:age for libsofia-sip-ua-glib
|
|
|
|
# - soname to 'libsofia-sip-ua-glib.so.(CUR-AGE)'
|
|
|
|
libsofia_sip_ua_glib_la_LDFLAGS = \
|
|
|
|
-version-info $(LIBVER_SOFIA_SIP_UA_GLIB_CUR):$(LIBVER_SOFIA_SIP_UA_GLIB_REV):$(LIBVER_SOFIA_SIP_UA_GLIB_AGE)
|
|
|
|
|
|
|
|
DOXYGEN = doxygen
|
|
|
|
|
|
|
|
EXTRA_DIST = docs/Doxyfile.aliases \
|
|
|
|
docs/Doxyfile.conf \
|
|
|
|
docs/Doxyfile.version
|
|
|
|
|
|
|
|
doxygen: built-sources
|
2007-04-19 18:28:01 -04:00
|
|
|
@mkdir -p docs docs/html &&\
|
2006-12-21 01:30:28 -05:00
|
|
|
for d in $(DIST_SUBDIRS) $(DIST_SUBDIRS); do \
|
|
|
|
test -r $$d/Doxyfile \
|
|
|
|
&& pushd $$d > /dev/null \
|
|
|
|
&& echo running ${DOXYGEN} in $$d \
|
|
|
|
&& ${DOXYGEN} \
|
|
|
|
&& popd > /dev/null ; \
|
|
|
|
done
|
2007-04-19 18:28:01 -04:00
|
|
|
${top_srcdir}/libsofia-sip-ua/docs/hide_emails.sh docs/html
|
2006-12-21 01:30:28 -05:00
|
|
|
|
2007-05-08 15:14:10 -04:00
|
|
|
PHONY = doxygen
|
|
|
|
|
2007-04-14 22:03:41 -04:00
|
|
|
include $(top_srcdir)/rules/recursive.am
|
|
|
|
|
2007-05-08 15:14:10 -04:00
|
|
|
if HAVE_LCOV
|
|
|
|
include $(top_srcdir)/rules/lcov.am
|
|
|
|
endif
|
|
|
|
|
|
|
|
.PHONY = $(PHONY)
|