1
by Hubert Figuiere
first attempt: start and show the status icon |
1 |
SUBDIRS = appdata icons ui |
2232
by Aurimas Černius
Add shortcuts window with main window shortcuts |
2 |
|
1
by Hubert Figuiere
first attempt: start and show the status icon |
3 |
@INTLTOOL_DESKTOP_RULE@
|
4 |
||
5 |
desktop_in_files = gnote.desktop.in |
|
6 |
desktop_files = $(desktop_in_files:.desktop.in=.desktop) |
|
7 |
||
8 |
desktopdir = $(datadir)/applications |
|
9 |
desktop_DATA = $(desktop_files) |
|
10 |
||
11 |
||
12 |
#pkgconfigdir = $(libdir)/pkgconfig
|
|
13 |
#pkgconfig_in_files = tomboy-addins.pc.in
|
|
14 |
#pkgconfig_DATA = $(pkgconfig_in_files:.pc.in=.pc)
|
|
15 |
||
16 |
||
17 |
gsettings_SCHEMAS = org.gnome.gnote.gschema.xml |
|
816
by Aurimas Černius
Change GConf to GSettings in build system |
18 |
@INTLTOOL_XML_NOMERGE_RULE@
|
19 |
@GSETTINGS_RULES@
|
|
20 |
||
1
by Hubert Figuiere
first attempt: start and show the status icon |
21 |
|
22 |
dbusservicedir = $(DBUS_SERVICE_DIR) |
|
23 |
dbusservice_in_files = org.gnome.Gnote.service.in |
|
411
by Hubert Figuiere
Implement org.gnome.Gnote.RemoteControl to mimic Tomboy DBus API. (Closes #581030) |
24 |
dbusservice_DATA = $(dbusservice_in_files:.service.in=.service) |
1
by Hubert Figuiere
first attempt: start and show the status icon |
25 |
|
26 |
$(dbusservice_DATA): $(dbusservice_in_files) Makefile |
|
27 |
$(AM_V_GEN)sed -e "s|\@bindir\@|$(bindir)|g" \ |
|
1138
by Adrian Bunk
Replace shave with automake's silent rules |
28 |
-e "s|\@wrapper\@|gnote|g" \ |
411
by Hubert Figuiere
Implement org.gnome.Gnote.RemoteControl to mimic Tomboy DBus API. (Closes #581030) |
29 |
< $< > $@
|
1
by Hubert Figuiere
first attempt: start and show the status icon |
30 |
|
31 |
@INTLTOOL_SERVER_RULE@
|
|
32 |
||
33 |
||
34 |
man_MANS = gnote.1 |
|
66
by Hubert Figuiere
fix manpage existence. |
35 |
|
1
by Hubert Figuiere
first attempt: start and show the status icon |
36 |
noinst_DATA = |
204
by Hubert Figuiere
* Applet support. |
37 |
|
1
by Hubert Figuiere
first attempt: start and show the status icon |
38 |
|
39 |
EXTRA_DIST = \ |
|
40 |
$(desktop_in_files) \ |
|
41 |
$(pkgconfig_in_files) \ |
|
42 |
org.gnome.gnote.gschema.xml.in \
|
|
917
by Aurimas Černius
Fixed distcheck errors |
43 |
$(man_MANS) \ |
1
by Hubert Figuiere
first attempt: start and show the status icon |
44 |
$(noinst_DATA) \ |
45 |
$(dbusservice_in_files) |
|
3
by Hubert Figuiere
really load the UI and fix crashes. At least now it does not crash |
46 |
|
1
by Hubert Figuiere
first attempt: start and show the status icon |
47 |
DISTCLEANFILES = \ |
48 |
$(desktop_files) \ |
|
49 |
$(pkgconfig_DATA) \ |
|
50 |
$(dbusservice_DATA) \ |
|
816
by Aurimas Černius
Change GConf to GSettings in build system |
51 |
$(gsettings_SCHEMAS) |
52 |
||
1514
by Aurimas Černius
Add check for desktop file validity |
53 |
check: |
54 |
desktop-file-validate $(desktop_files) |
|
55 |