~ubuntu-branches/ubuntu/precise/rhythmbox/precise-201203091205

« back to all changes in this revision

Viewing changes to daapsharing/Makefile.am

Tags: upstream-0.9.5
ImportĀ upstreamĀ versionĀ 0.9.5

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
NULL =
 
2
 
1
3
noinst_LTLIBRARIES = libdaapsharing.la
2
4
 
3
5
libdaapsharing_la_SOURCES = 
10
12
                rb-daap-share.h         \
11
13
                rb-daap-structure.c     \
12
14
                rb-daap-structure.h     \
13
 
                rb-daap-mdns.c          \
14
 
                rb-daap-mdns.h          \
 
15
                rb-daap-mdns-publisher.h \
 
16
                rb-daap-mdns-browser.h  \
15
17
                rb-daap-connection.c    \
16
18
                rb-daap-connection.h    \
 
19
                rb-daap-hash.c          \
 
20
                rb-daap-hash.h          \
17
21
                rb-daap-src.c           \
18
22
                rb-daap-src.h           \
19
23
                rb-daap-dialog.c        \
20
 
                rb-daap-dialog.h
 
24
                rb-daap-dialog.h        \
 
25
                $(NULL)
 
26
 
 
27
if USE_HOWL
 
28
libdaapsharing_la_SOURCES += \
 
29
                rb-daap-mdns-publisher-howl.c           \
 
30
                rb-daap-mdns-browser-howl.c             \
 
31
                $(NULL)
 
32
else
 
33
libdaapsharing_la_SOURCES += \
 
34
                rb-daap-mdns-publisher-avahi.c          \
 
35
                rb-daap-mdns-browser-avahi.c            \
 
36
                $(NULL)
 
37
endif
 
38
 
21
39
endif
22
40
 
23
41
INCLUDES =                                              \
40
58
        $(WARN_CFLAGS)                                  \
41
59
        $(RHYTHMBOX_CFLAGS)                             \
42
60
        $(SOUP_CFLAGS)                                  \
43
 
        $(MDNS_CFLAGS)
 
61
        $(MDNS_CFLAGS)                                  \
 
62
        $(NULL)
44
63
 
45
64
libdaapsharing_la_LDFLAGS = -export-dynamic
46
65