summaryrefslogtreecommitdiff
path: root/rakia/Makefile.am
blob: 48e578642cdddc186f63967172102f7e943c95b7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
#
# Makefile.am for telepathy-rakia/rakia
#
# Copyright (C) 2008 Nokia Corporation
# Contact: Mikhail Zabaluev <mikhail.zabaluev@nokia.com>
# Licensed under LGPL. See file COPYING.
#

noinst_LTLIBRARIES = librakia.la

AM_CPPFLAGS = @GLIB_CFLAGS@ @TELEPATHY_GLIB_CFLAGS@ @SOFIA_SIP_UA_CFLAGS@ \
	      -I$(top_builddir) -I$(top_srcdir)

AM_CFLAGS = $(ERROR_CFLAGS) $(COVERAGE_CFLAGS)

rakia_includedir = $(includedir)/telepathy-rakia-0.7/rakia

rakia_include_HEADERS = \
	base-connection.h \
	connection-aliasing.h \
	sofia-decls.h \
	codec-param-formats.h \
	event-target.h \
	handles.h \
	debug.h \
	media-manager.h \
	text-manager.h \
	util.h

BUILT_SOURCES = \
	signals-marshal.h \
	signals-marshal.c

librakia_la_SOURCES = \
	base-connection.c \
	base-connection-sofia.c \
	connection-aliasing.c \	
	call-channel.h \
	call-channel.c \
	call-content.h \
	call-content.c \
	call-stream.h \
	call-stream.c \
	codec-param-formats.c \
	event-target.c \
	handles.c \
	debug.c \
	media-manager.c \
	sip-media.c \
	sip-media.h \
	sip-session.c \
	sip-session.h \
	text-channel.h \
	text-channel.c \
	text-manager.c \
	util.c

nodist_librakia_la_SOURCES = \
	signals-marshal.h \
	signals-marshal.c

EXTRA_DIST = signals-marshal.list

CLEANFILES = $(BUILT_SOURCES)

CLEANFILES += *.gcno

signals-marshal.c: ${srcdir}/signals-marshal.list
	glib-genmarshal --body --prefix=_rakia_marshal $< >$@ || rm -f $@

signals-marshal.h: ${srcdir}/signals-marshal.list
	glib-genmarshal --header --prefix=_rakia_marshal $< >$@ || rm -f $@