2010-02-06 20:19:41 -05:00
|
|
|
# Point to our macro directory and pick up user flags from the environment
|
|
|
|
ACLOCAL_AMFLAGS = -I m4 ${ACLOCAL_FLAGS}
|
|
|
|
|
2013-10-31 12:02:01 -04:00
|
|
|
SUBDIRS = data js src tests po docs
|
|
|
|
|
|
|
|
if BUILD_BROWSER_PLUGIN
|
|
|
|
SUBDIRS += browser-plugin
|
|
|
|
endif
|
2012-11-05 23:39:32 -05:00
|
|
|
|
|
|
|
if ENABLE_MAN
|
|
|
|
SUBDIRS += man
|
|
|
|
endif
|
2008-10-31 00:22:44 -04:00
|
|
|
|
2009-03-10 12:53:03 -04:00
|
|
|
EXTRA_DIST = \
|
|
|
|
.project \
|
2009-09-18 16:13:30 -04:00
|
|
|
.settings \
|
2010-02-22 19:21:42 -05:00
|
|
|
autogen.sh \
|
|
|
|
tools/check-for-missing.py
|
2009-09-18 16:13:30 -04:00
|
|
|
|
|
|
|
# These are files checked into Git that we don't want to distribute
|
|
|
|
DIST_EXCLUDE = \
|
|
|
|
.gitignore \
|
2012-12-18 10:10:34 -05:00
|
|
|
.gitmodules \
|
2009-09-18 16:13:30 -04:00
|
|
|
gnome-shell.doap \
|
2012-10-15 19:29:55 -04:00
|
|
|
HACKING \
|
2009-09-18 16:13:30 -04:00
|
|
|
MAINTAINERS \
|
|
|
|
tools/build/*
|
2008-10-31 00:22:44 -04:00
|
|
|
|
2009-03-10 12:53:03 -04:00
|
|
|
distcheck-hook:
|
2009-09-18 16:13:30 -04:00
|
|
|
@echo "Checking disted files against files in git"
|
2010-02-22 19:21:42 -05:00
|
|
|
@$(srcdir)/tools/check-for-missing.py $(srcdir) $(distdir) $(DIST_EXCLUDE)
|
2011-09-07 14:23:28 -04:00
|
|
|
|
2012-11-05 23:39:32 -05:00
|
|
|
DISTCHECK_CONFIGURE_FLAGS = --enable-gtk-doc --enable-man
|