mutter/Makefile.am
Robert Bragg 2215588c29 dist: enable more features for distcheck
As a bare minimum we want to ensure that are releases are able to build
with support for gles1, gles2, gl, egl and glx. Previously we only
checked the build with gl + glx enabled and our last release actually
missed a header file required for building with egl.
2011-07-20 16:58:46 +01:00

30 lines
521 B
Makefile

SUBDIRS = cogl
if BUILD_COGL_PANGO
SUBDIRS += cogl-pango
endif
SUBDIRS += examples doc po
ACLOCAL_AMFLAGS = -I build/autotools ${ACLOCAL_FLAGS}
EXTRA_DIST = \
README.in \
config-custom.h
# .changelog expects these to be initializes
CLEANFILES=
DISTCLEANFILES=
DISTCHECK_CONFIGURE_FLAGS = \
--enable-gtk-doc \
--enable-maintainer-flags \
--enable-profile \
--enable-gles1 \
--enable-gles2 \
--enable-gl \
--enable-xlib-egl-platform \
--enable-glx
include $(top_srcdir)/build/autotools/Makefile.am.release