d2c41502a4
This commit pushes --disable-glib to the extreme of embedding the par of glib cogl depends on in tree to be able to generate a DSO that does not depend on an external glib. To do so, it: - keeps a lot of glib's configure.ac in as-glibconfig.m4 - pulls the code cogl depends on and the necessary dependencies Reviewed-by: Robert Bragg <robert@linux.intel.com>
38 lines
690 B
Makefile
38 lines
690 B
Makefile
SUBDIRS = deps cogl tests
|
|
|
|
if BUILD_COGL_PANGO
|
|
SUBDIRS += cogl-pango
|
|
endif
|
|
|
|
if BUILD_COGL_GLES2
|
|
SUBDIRS += cogl-gles2
|
|
endif
|
|
|
|
SUBDIRS += examples doc po build
|
|
|
|
ACLOCAL_AMFLAGS = -I build/autotools ${ACLOCAL_FLAGS}
|
|
|
|
EXTRA_DIST = \
|
|
README.in \
|
|
config-custom.h \
|
|
config.h.win32 \
|
|
config.h.win32.in
|
|
|
|
# .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-wayland-egl-platform \
|
|
--enable-glx \
|
|
--enable-wayland-egl-server
|
|
|
|
include $(top_srcdir)/build/autotools/Makefile.am.release
|