blob: e24041f94313f72791b504d57bc69b0f07c84169 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
|
SUBDIRS = deps test-fixtures
# Until we can bump the cogl soname cogl-path is built as
# a noinst_LTLIBRARY and linked into libcogl.so so it needs
# to be built before cogl...
if BUILD_COGL_PATH
SUBDIRS += cogl-path
endif
SUBDIRS += cogl
if BUILD_COGL_PANGO
SUBDIRS += cogl-pango
endif
if BUILD_COGL_GLES2
SUBDIRS += cogl-gles2
endif
if BUILD_COGL_GST
SUBDIRS += cogl-gst
endif
SUBDIRS += tests 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 \
--enable-cogl-gst
include $(top_srcdir)/build/autotools/Makefile.am.release
|