diff options
author | Marco Pesenti Gritti <mpeseng@src.gnome.org> | 2002-12-31 03:29:24 +0800 |
---|---|---|
committer | Marco Pesenti Gritti <mpeseng@src.gnome.org> | 2002-12-31 03:29:24 +0800 |
commit | 6876ede98282c7db318089bfefb292aa59e55d48 (patch) | |
tree | 76b23252d04da232d0ebf22e53bfe3e022686af9 /data/Makefile.am | |
download | gsoc2013-epiphany-6876ede98282c7db318089bfefb292aa59e55d48.tar.gz gsoc2013-epiphany-6876ede98282c7db318089bfefb292aa59e55d48.tar.zst gsoc2013-epiphany-6876ede98282c7db318089bfefb292aa59e55d48.zip |
Initial revision
Diffstat (limited to 'data/Makefile.am')
-rw-r--r-- | data/Makefile.am | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/data/Makefile.am b/data/Makefile.am new file mode 100644 index 000000000..60b11c546 --- /dev/null +++ b/data/Makefile.am @@ -0,0 +1,29 @@ +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 + +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 = GNOME_Epiphany_Automation.server + +EXTRA_DIST = $(server_in_files) \ + $(schema_DATA) \ + $(starthere_DATA) |