~ubuntu-branches/ubuntu/vivid/liferea/vivid-proposed

« back to all changes in this revision

Viewing changes to src/Makefile.am

  • Committer: Package Import Robot
  • Author(s): bojo42
  • Date: 2012-03-29 14:17:21 UTC
  • mfrom: (1.3.9) (3.2.5 sid)
  • Revision ID: package-import@ubuntu.com-20120329141721-tbfopcrc5797wxt7
Tags: 1.8.3-0.1ubuntu1
* New upstream release (LP: #290666, #371754, #741543, #716688)
* Merge from Debian unstable (LP: #935147), remaining changes:
* debian/patches:
  - drop gtk-status-icon.patch & notification-append as in upstream
  - drop fix_systray_behavior as mostly upstreamed and rest seems unused
  - 01_ubuntu_feedlists: update & rename, move planets to "Open Source"  
  - add_X-Ubuntu-Gettext-Domain: rebase
  - libunity.patch: rebase, apply before indicator patch (liferea_shell.c)
  - libindicate_increase_version.patch: exclude from libindicate.patch
  - deactivate libindicate.patch, seems partly upstreamed and needs rework
* debian/control: libindicate-dev, libindicate-gtk-dev & libunity-dev
* debian/liferea.indicate & liferea.install: ship indicator desktop file
* debian/rules: enable libindicate

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
## Process this file with automake to produce Makefile.in
2
2
 
3
 
if WITH_AVAHI
4
 
SYNC = sync
5
 
SYNC_LIB = sync/liblisync.a
6
 
endif
7
 
 
8
 
SUBDIRS = parsers notification ui fl_sources scripting $(SYNC) webkit .
 
3
SUBDIRS = parsers notification ui fl_sources webkit .
9
4
 
10
5
AM_CPPFLAGS = \
11
6
        -DPACKAGE_DATA_DIR=\""$(datadir)"\" \
14
9
        -DBIN_DIR=\""$(bindir)"\" \
15
10
        -I$(top_srcdir)/src \
16
11
        $(PACKAGE_CFLAGS) \
17
 
        $(SM_CFLAGS) \
18
 
        $(DBUS_CFLAGS) \
19
 
        $(NM_CFLAGS) \
20
 
        $(GNUTLS_CFLAGS) 
 
12
        $(SM_CFLAGS)
21
13
 
22
14
bin_PROGRAMS = liferea
23
15
bin_SCRIPTS = liferea-add-feed
24
16
 
25
17
liferea_SOURCES = \
26
 
        bacon-message-connection.c \
27
 
        bacon-message-connection.h \
28
18
        browser.c browser.h \
29
19
        comments.c comments.h \
30
20
        common.c common.h \
31
21
        conf.c conf.h \
 
22
        date.c date.h \
32
23
        db.c db.h \
33
24
        dbus.c dbus.h \
34
25
        debug.c debug.h \
43
34
        html.c html.h \
44
35
        htmlview.c htmlview.h \
45
36
        item.c item.h \
 
37
        item_loader.c item_loader.h \
46
38
        item_state.c item_state.h \
47
39
        itemset.c itemset.h \
48
40
        itemlist.c itemlist.h \
 
41
        json.c json.h \
49
42
        metadata.c metadata.h \
50
43
        migrate.c migrate.h \
51
44
        net.c net.h \
 
45
        net_monitor.c net_monitor.h \
52
46
        newsbin.c newsbin.h \
53
47
        node.c node.h \
54
48
        node_type.c node_type.h \
55
49
        node_view.h \
56
 
        plugin.c plugin.h \
57
50
        render.c render.h \
58
51
        rule.c rule.h \
59
 
        script.c script.h \
60
52
        social.c social.h \
61
53
        subscription.c subscription.h \
62
54
        subscription_type.h \
63
55
        update.c update.h \
64
56
        main.c \
65
57
        vfolder.c vfolder.h \
 
58
        vfolder_loader.c vfolder_loader.h \
66
59
        xml.c xml.h
67
60
 
68
61
liferea_LDADD = parsers/libliparsers.a \
69
62
                fl_sources/libliflsources.a \
70
 
                notification/libnotification.a \
71
63
                ui/libliui.a \
72
64
                webkit/libwebkit.a \
73
65
                $(SYNC_LIB) \
74
66
                $(PACKAGE_LIBS) $(SM_LIBS) \
75
 
                $(DBUS_LIBS) $(NM_LIBS) $(INTLLIBS) $(GNUTLS_LIBS) $(AVAHI_LIBS) \
 
67
                $(INTLLIBS) $(AVAHI_LIBS) \
76
68
                $(WEBKIT_LIBS) $(LIBNOTIFY_LIBS)
77
69
 
78
 
if WITH_DBUS
79
 
 
80
 
EXTRA_DIST = $(srcdir)/liferea_dbus.xml
81
 
BUILT_SOURCES = dbus_wrap.c
82
 
CLEANFILES = $(BUILT_SOURCES)
83
 
 
84
 
dbus_wrap.c: $(srcdir)/liferea_dbus.xml
85
 
        dbus-binding-tool --mode=glib-server --prefix=liferea_dbus $(srcdir)/liferea_dbus.xml > dbus_wrap.c
86
 
 
87
 
endif
88
 
 
89
 
if PLATFORM_WIN32
90
 
 
91
 
liferea_LDFLAGS = -Wl,--export-all-symbols,--out-implib,liferea.a
 
70
EXTRA_DIST = $(srcdir)/liferea-add-feed.in
 
71
DISTCLEANFILES = $(srcdir)/liferea-add-feed
 
72
AM_INSTALLCHECK_STD_OPTIONS_EXEMPT = liferea-add-feed
 
73
 
 
74
if WITH_LIBNOTIFY
 
75
 
 
76
liferea_LDADD += notification/libnotify.a $(LIBNOTIFY_LIBS)
92
77
 
93
78
endif
94
79