Replace the gnome-shell builtin settings search, which relied on removed menu files, with one that uses the remote search infrastructure and CcSearchModel, and features the ability to continue searching within the control center application. https://bugzilla.gnome.org/show_bug.cgi?id=690577
49 lines
1.3 KiB
Makefile
49 lines
1.3 KiB
Makefile
ACLOCAL_AMFLAGS = -I m4 -I libgd ${ACLOCAL_FLAGS}
|
|
|
|
SUBDIRS = libgd po egg-list-box panels shell search-provider
|
|
if BUILD_DOCUMENTATION
|
|
SUBDIRS += man
|
|
endif
|
|
DIST_SUBDIRS = libgd egg-list-box po panels shell man search-provider
|
|
|
|
MAINTAINERCLEANFILES = \
|
|
$(srcdir)/INSTALL \
|
|
$(srcdir)/aclocal.m4 \
|
|
$(srcdir)/autoscan.log \
|
|
$(srcdir)/compile \
|
|
$(srcdir)/config.guess \
|
|
$(srcdir)/config.h.in \
|
|
$(srcdir)/config.sub \
|
|
$(srcdir)/configure.scan \
|
|
$(srcdir)/depcomp \
|
|
$(srcdir)/install-sh \
|
|
$(srcdir)/ltmain.sh \
|
|
$(srcdir)/missing \
|
|
$(srcdir)/mkinstalldirs \
|
|
$(srcdir)/omf.make \
|
|
$(srcdir)/xmldocs.make \
|
|
$(srcdir)/gtk-doc.make \
|
|
`find "$(srcdir)" -type f -name Makefile.in -print`
|
|
|
|
EXTRA_DIST = \
|
|
MAINTAINERS
|
|
|
|
DISTCHECK_CONFIGURE_FLAGS = --disable-update-mimedb --enable-gtk-doc --disable-maintainer-mode
|
|
|
|
GITIGNOREFILES=m4
|
|
|
|
-include $(top_srcdir)/git.mk
|
|
|
|
dist-hook:
|
|
@if test -d "$(srcdir)/.git"; \
|
|
then \
|
|
echo Creating ChangeLog && \
|
|
( cd "$(top_srcdir)" && \
|
|
echo '# Generated by Makefile. Do not edit.'; echo; \
|
|
$(top_srcdir)/missing --run git log --stat ) > ChangeLog.tmp \
|
|
&& mv -f ChangeLog.tmp $(top_distdir)/ChangeLog \
|
|
|| ( rm -f ChangeLog.tmp ; \
|
|
echo Failed to generate ChangeLog >&2 ); \
|
|
else \
|
|
echo A git clone is required to generate a ChangeLog >&2; \
|
|
fi
|