7f4e914b00
When using the meson build system, gvc will be built as a subproject. As meson restricts submodules to a subprojects/ directory in the source tree root, move the submodule there. https://bugzilla.gnome.org/show_bug.cgi?id=783229
34 lines
747 B
Makefile
34 lines
747 B
Makefile
# Point to our macro directory and pick up user flags from the environment
|
|
ACLOCAL_AMFLAGS = -I m4 ${ACLOCAL_FLAGS}
|
|
|
|
SUBDIRS = data js subprojects/gvc src tests po docs
|
|
|
|
if BUILD_BROWSER_PLUGIN
|
|
SUBDIRS += browser-plugin
|
|
endif
|
|
|
|
if ENABLE_MAN
|
|
SUBDIRS += man
|
|
endif
|
|
|
|
EXTRA_DIST = \
|
|
.project \
|
|
.settings \
|
|
autogen.sh \
|
|
tools/check-for-missing.py
|
|
|
|
# These are files checked into Git that we don't want to distribute
|
|
DIST_EXCLUDE = \
|
|
.gitignore \
|
|
.gitmodules \
|
|
gnome-shell.doap \
|
|
HACKING \
|
|
MAINTAINERS \
|
|
tools/build/*
|
|
|
|
distcheck-hook:
|
|
@echo "Checking disted files against files in git"
|
|
@$(srcdir)/tools/check-for-missing.py $(srcdir) $(distdir) $(DIST_EXCLUDE)
|
|
|
|
DISTCHECK_CONFIGURE_FLAGS = --enable-gtk-doc --enable-man
|