summaryrefslogtreecommitdiff
path: root/examples/client/stream-tubes/Makefile.am
blob: fb2259d6b882a50d435404ece65eca02804f2dd6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
noinst_PROGRAMS = \
    offerer \
    accepter \
    $(NULL)

offerer_SOURCES = offerer.c
accepter_SOURCES = accepter.c

# In an external project you'd use $(TP_GLIB_LIBS) (obtained from
# pkg-config via autoconf) instead of the .la path
LDADD = \
    $(top_builddir)/telepathy-glib/libtelepathy-glib.la \
    @DBUS_LIBS@ \
    @GLIB_LIBS@

AM_CFLAGS = \
    $(ERROR_CFLAGS) \
    @DBUS_CFLAGS@ \
    @GLIB_CFLAGS@ \
    @TP_GLIB_CFLAGS@
AM_LDFLAGS = \
    $(ERROR_LDFLAGS) \
    $(NULL)