2006-12-21 06:30:28 +00:00
|
|
|
#
|
|
|
|
# Makefile.am for sofia features module
|
|
|
|
#
|
|
|
|
# Copyright (C) 2005,2006 Nokia Corporation
|
|
|
|
# Contact: Pekka Pessi <pekka.pessi@nokia.com>
|
|
|
|
# Licensed under LGPL. See file COPYING.
|
|
|
|
|
|
|
|
# ----------------------------------------------------------------------
|
|
|
|
# Header paths
|
|
|
|
|
|
|
|
INCLUDES = $(INTERNAL_INCLUDES)
|
|
|
|
|
|
|
|
# ----------------------------------------------------------------------
|
|
|
|
# Build targets
|
|
|
|
|
|
|
|
noinst_LTLIBRARIES = libfeatures.la
|
|
|
|
|
|
|
|
# ----------------------------------------------------------------------
|
|
|
|
# Rules for building the targets
|
|
|
|
|
|
|
|
# This is used by platforms not supporting autoconf
|
|
|
|
nobase_include_sofia_HEADERS = sofia-sip/sofia_features.h
|
|
|
|
|
|
|
|
libfeatures_la_SOURCES = features.c
|
|
|
|
|
|
|
|
# ----------------------------------------------------------------------
|
|
|
|
# Install and distribution rules
|
|
|
|
|
2007-04-19 22:28:01 +00:00
|
|
|
EXTRA_DIST = features.docs
|
2006-12-21 06:30:28 +00:00
|
|
|
|
|
|
|
# ----------------------------------------------------------------------
|
|
|
|
# Sofia specific rules
|
|
|
|
|
2007-04-15 02:03:41 +00:00
|
|
|
include $(top_srcdir)/rules/sofia.am
|
|
|
|
|