blob: e5d584df78af35ac7e0c771bd6d559e7b84ee29e (
plain) (
blame)
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
|
SUBDIRS = ui art glade
@INTLTOOL_SERVER_RULE@
@INTLTOOL_DESKTOP_RULE@
server_in_files = GNOME_Epiphany_Automation.server.in GNOME_Epiphany_NautilusView.server.in
server_DATA = GNOME_Epiphany_Automation.server GNOME_Epiphany_NautilusView.server
serverdir = $(libdir)/bonobo/servers
DESKTOP_IN_FILES=epiphany.desktop.in
DESKTOP_FILES=$(DESKTOP_IN_FILES:.desktop.in=.desktop)
Applicationsdir = $(datadir)/applications
Applications_DATA = $(DESKTOP_FILES)
schemadir = $(sysconfdir)/gconf/schemas
schema_DATA = epiphany.schemas
startheredir = $(pkgdatadir)
starthere_DATA = start_here.html
EXTRA_DIST = $(glade_DATA)
install-data-local:
if test -z "$(DESTDIR)" ; then \
for p in $(schema_DATA) ; do \
GCONF_CONFIG_SOURCE=$(GCONF_SCHEMA_CONFIG_SOURCE) $(GCONFTOOL) --makefile-install-rule $(top_builddir)/data/$$p; \
done \
fi
CLEANFILES = $(server_DATA) $(Applications_DATA)
EXTRA_DIST = $(server_in_files) \
$(schema_DATA) \
$(starthere_DATA) \
$(DESKTOP_IN_FILES)
|