2010-02-07 02:19:41 +01:00
|
|
|
# Point to our macro directory and pick up user flags from the environment
|
|
|
|
ACLOCAL_AMFLAGS = -I m4 ${ACLOCAL_FLAGS}
|
|
|
|
|
2012-11-05 23:39:32 -05:00
|
|
|
SUBDIRS = data js src browser-plugin tests po docs
|
|
|
|
|
|
|
|
if ENABLE_MAN
|
|
|
|
SUBDIRS += man
|
|
|
|
endif
|
2008-10-31 04:22:44 +00: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 16:10:34 +01:00
|
|
|
.gitmodules \
|
2009-09-18 16:13:30 -04:00
|
|
|
gnome-shell.doap \
|
2012-10-16 01:29:55 +02:00
|
|
|
HACKING \
|
2009-09-18 16:13:30 -04:00
|
|
|
MAINTAINERS \
|
|
|
|
tools/build/*
|
2008-10-31 04:22:44 +00: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 20:23:28 +02:00
|
|
|
|
2012-11-05 23:39:32 -05:00
|
|
|
DISTCHECK_CONFIGURE_FLAGS = --enable-gtk-doc --enable-man
|