summaryrefslogtreecommitdiff
path: root/examples/client/dbus-tubes/Makefile.am
blob: 11c5ddf5bb2f4a976ed65c601bf3e0d5296f492d (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
noinst_PROGRAMS = \
    offerer \
    accepter \
    $(NULL)

offerer_SOURCES = offerer.c constants.h
accepter_SOURCES = accepter.c constants.h

# 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_CPPFLAGS = \
    -DTP_SEAL_ENABLE \
    $(NULL)

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