2006-12-21 06:30:28 +00:00
|
|
|
#
|
|
|
|
# Makefile.am for su-glib module
|
|
|
|
#
|
|
|
|
# Copyright (C) 2006 Nokia Corporation
|
|
|
|
# Contact: Pekka Pessi <pekka.pessi@nokia.com>
|
|
|
|
# Licensed under LGPL. See file COPYING.
|
|
|
|
#
|
|
|
|
|
|
|
|
# ----------------------------------------------------------------------
|
|
|
|
# Headers
|
|
|
|
|
|
|
|
S_BASE = $(top_srcdir)/libsofia-sip-ua
|
|
|
|
B_BASE = $(top_builddir)/libsofia-sip-ua
|
|
|
|
|
2014-03-03 21:39:18 +00:00
|
|
|
AM_CPPFLAGS = -I$(S_BASE)/su -I$(B_BASE)/su $(GLIB_CFLAGS) \
|
2009-03-04 20:42:53 +00:00
|
|
|
$(SOFIA_GLIB_CFLAGS)
|
2006-12-21 06:30:28 +00:00
|
|
|
|
|
|
|
# ----------------------------------------------------------------------
|
|
|
|
# Build targets
|
|
|
|
|
|
|
|
noinst_LTLIBRARIES = libsu-glib.la
|
|
|
|
|
2007-01-02 15:11:55 +00:00
|
|
|
check_PROGRAMS = su_source_test torture_su_glib_timer
|
2006-12-21 06:30:28 +00:00
|
|
|
|
|
|
|
# ----------------------------------------------------------------------
|
|
|
|
# Tests
|
|
|
|
|
2007-01-02 15:11:55 +00:00
|
|
|
TESTS = su_source_test torture_su_glib_timer
|
2006-12-21 06:30:28 +00:00
|
|
|
|
|
|
|
# ----------------------------------------------------------------------
|
|
|
|
# Rules for building the targets
|
|
|
|
|
|
|
|
nobase_include_sofia_HEADERS =
|
|
|
|
if HAVE_GLIB
|
|
|
|
nobase_include_sofia_HEADERS += \
|
|
|
|
sofia-sip/su_source.h \
|
|
|
|
sofia-sip/su_glib.h
|
|
|
|
endif
|
|
|
|
|
|
|
|
libsu_glib_la_SOURCES = su_source.c
|
|
|
|
|
|
|
|
libsu_glib_la_DEPENDENCIES = \
|
|
|
|
../../libsofia-sip-ua/libsofia-sip-ua.la
|
|
|
|
|
|
|
|
LDADD = libsu-glib.la \
|
|
|
|
../../libsofia-sip-ua/libsofia-sip-ua.la \
|
|
|
|
$(GLIB_LIBS)
|
|
|
|
|
|
|
|
# ----------------------------------------------------------------------
|
|
|
|
# Install and distribution rules
|
|
|
|
|
|
|
|
EXTRA_DIST = Doxyfile su_glib.docs
|
|
|
|
|
|
|
|
# ----------------------------------------------------------------------
|
|
|
|
# Automake options
|
|
|
|
|
|
|
|
AUTOMAKE_OPTIONS = foreign
|
|
|
|
|
|
|
|
# ----------------------------------------------------------------------
|
|
|
|
# Sofia specific rules
|
|
|
|
|
2007-04-15 02:03:41 +00:00
|
|
|
include $(top_srcdir)/rules/sofia.am
|