forked from Mirrors/freeswitch
853936abd3
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@4939 d0543943-73ff-0310-b7d9-9358b9ac24b2
62 lines
1.5 KiB
Makefile
62 lines
1.5 KiB
Makefile
#
|
|
# 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
|
|
|
|
INCLUDES = -I$(S_BASE)/su -I$(B_BASE)/su $(GLIB_CFLAGS)
|
|
|
|
# ----------------------------------------------------------------------
|
|
# Build targets
|
|
|
|
noinst_LTLIBRARIES = libsu-glib.la
|
|
|
|
check_PROGRAMS = su_source_test torture_su_glib_timer
|
|
|
|
# ----------------------------------------------------------------------
|
|
# Tests
|
|
|
|
TESTS = su_source_test torture_su_glib_timer
|
|
|
|
# ----------------------------------------------------------------------
|
|
# 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
|
|
|
|
include $(top_srcdir)/rules/sofia.am
|