summaryrefslogtreecommitdiff
path: root/search-provider
diff options
context:
space:
mode:
authorIñigo Martínez <inigomartinez@gmail.com>2017-09-11 18:28:23 +0200
committerBastien Nocera <hadess@hadess.net>2018-01-18 12:20:08 +0100
commitdc0988d47c4725e00c042e4e6c724b6552baa856 (patch)
tree8fd3b5f4d8b557e13e82e00d2bdc389ee34e228a /search-provider
parentca3779467e075c2b693adf4c6034e5b5e4b9bb6a (diff)
downloadgnome-control-center-dc0988d47c4725e00c042e4e6c724b6552baa856.tar.gz
build: Remove autotools
To avoid the burden of maintaining multiple build systems, this patch removes autotools support. https://bugzilla.gnome.org/show_bug.cgi?id=785414
Diffstat (limited to 'search-provider')
-rw-r--r--search-provider/Makefile.am54
1 files changed, 0 insertions, 54 deletions
diff --git a/search-provider/Makefile.am b/search-provider/Makefile.am
deleted file mode 100644
index a07599cbe..000000000
--- a/search-provider/Makefile.am
+++ /dev/null
@@ -1,54 +0,0 @@
-dbus_shell_search_provider_built_sources = \
- cc-shell-search-provider-generated.c \
- cc-shell-search-provider-generated.h
-
-# The upstream for the DBus interface definition is
-# at http://git.gnome.org/browse/gnome-shell/plain/data/org.gnome.ShellSearchProvider2.xml
-$(dbus_shell_search_provider_built_sources) : Makefile.am $(srcdir)/org.gnome.ShellSearchProvider2.xml
- $(AM_V_GEN)gdbus-codegen \
- --interface-prefix org.gnome. \
- --c-namespace Cc \
- --generate-c-code cc-shell-search-provider-generated \
- $(srcdir)/org.gnome.ShellSearchProvider2.xml \
- $(NULL)
-
-AM_CPPFLAGS = \
- -DGNOMELOCALEDIR="\"$(datadir)/locale\""\
- -I$(top_srcdir) \
- $(SHELL_CFLAGS) \
- -I$(top_srcdir)/panels/common/ \
- -I$(top_srcdir)/subprojects/libgd
-
-libexec_PROGRAMS = gnome-control-center-search-provider
-
-BUILT_SOURCES = $(dbus_shell_search_provider_built_sources)
-
-gnome_control_center_search_provider_SOURCES = \
- $(BUILT_SOURCES) \
- control-center-search-provider.c \
- control-center-search-provider.h \
- cc-search-provider.c \
- cc-search-provider.h
-
-gnome_control_center_search_provider_LDADD = \
- $(top_builddir)/panels/common/liblanguage.la \
- $(top_builddir)/shell/libshell.la \
- $(top_builddir)/shell/libpanel_loader.la \
- $(SHELL_LIBS)
-
-CLEANFILES = $(BUILT_SOURCES) $(service_DATA)
-
-servicedir = $(datadir)/dbus-1/services
-service_DATA = $(service_in_files:.service.in=.service)
-service_in_files = \
- org.gnome.ControlCenter.SearchProvider.service.in
-
-org.gnome.ControlCenter.SearchProvider.service: org.gnome.ControlCenter.SearchProvider.service.in Makefile
- $(AM_V_GEN) sed -e "s|\@libexecdir\@|$(libexecdir)|" $< > $@
-
-EXTRA_DIST = $(service_in_files) org.gnome.ShellSearchProvider2.xml meson.build
-
-searchproviderdir = $(datadir)/gnome-shell/search-providers
-dist_searchprovider_DATA = gnome-control-center-search-provider.ini
-
--include $(top_srcdir)/git.mk