-
Notifications
You must be signed in to change notification settings - Fork 128
/
Makefile.am
98 lines (80 loc) · 2.2 KB
/
Makefile.am
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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
## Process this file with automake to produce Makefile.in
SUBDIRS = doc man opml pixmaps po src xslt glade
desktop_in_files = net.sourceforge.liferea.desktop.in
desktopdir = $(datadir)/applications
desktop_DATA = $(desktop_in_files:.desktop.in=.desktop)
@INTLTOOL_DESKTOP_RULE@
dbusservicedir = $(datadir)/dbus-1/services
dbusservice_DATA = net.sourceforge.liferea.service
net.sourceforge.liferea.service: Makefile
$(AM_V_GEN) (echo '[D-BUS Service]'; \
echo 'Name=net.sourceforge.liferea'; \
echo 'Exec=${bindir}/liferea --gapplication-service') > [email protected] && \
mv [email protected] $@
appdatadir = $(datadir)/metainfo
appdata_in_files = net.sourceforge.liferea.appdata.xml.in
appdata_DATA = $(appdata_in_files:.xml.in=.xml)
@INTLTOOL_XML_RULE@
cssdir = $(pkgdatadir)/css
css_DATA = \
css/liferea.css \
css/user.css
jsdir = $(pkgdatadir)/js
js_DATA = \
js/gresource.xml \
js/htmlview.js \
js/purify.min.js \
js/Readability-readerable.js \
js/Readability.js
dtddir = $(pkgdatadir)/dtd
dtd_DATA = dtd/html.ent
plugindir = $(pkglibdir)/plugins
plugin_DATA = \
plugins/add-bookmark-site.py \
plugins/add-bookmark-site.plugin \
plugins/add-bookmark-site.ui \
plugins/bold-unread.py \
plugins/bold-unread.plugin \
plugins/getfocus.py \
plugins/getfocus.plugin \
plugins/gnome-keyring.py \
plugins/gnome-keyring.plugin \
plugins/headerbar.py \
plugins/headerbar.plugin \
plugins/libnotify.py \
plugins/libnotify.plugin \
plugins/plugin-installer.py \
plugins/plugin-installer.plugin \
plugins/trayicon.py \
plugins/trayicon.plugin
gsettings_SCHEMAS = net.sf.liferea.gschema.xml
@INTLTOOL_XML_NOMERGE_RULE@
@GSETTINGS_RULES@
data_convertdir = $(datadir)/GConf/gsettings
dist_data_convert_DATA = liferea.convert
EXTRA_DIST = \
net.sf.liferea.gschema.xml.in \
po/liferea.pot \
$(desktop_in_files) \
$(desktop_DATA) \
$(schema_DATA) \
$(css_DATA) \
$(js_DATA) \
$(dtd_DATA) \
$(plugin_DATA) \
$(gsettings_SCHEMAS) \
$(appdata_in_files) \
$(appdata_DATA)
DISTCLEANFILES = \
liferea.desktop \
net.sourceforge.liferea.service \
intltool-extract \
intltool-merge \
intltool-update
CLEANFILES = \
$(gsettings_SCHEMAS) \
$(appdata_DATA)
po/liferea.pot:
cd po && $(MAKE) liferea.pot
test:
cd src/tests && make test