From ba1cab0a624d188e763a11daa57af7423aa28367 Mon Sep 17 00:00:00 2001 From: Neil Roberts Date: Wed, 12 Nov 2008 12:08:44 +0000 Subject: [PATCH] * clutter/cogl/gles/Makefile.am (libclutterinclude_HEADERS): * clutter/cogl/gl/Makefile.am (libclutterinclude_HEADERS): * clutter/cogl/common/Makefile.am (libclutter_cogl_common_la_SOURCES): Move cogl-mesh.h into the headers for libclutter so that it will get installed. --- common/Makefile.am | 3 +-- gl/Makefile.am | 3 ++- gles/Makefile.am | 3 ++- 3 files changed, 5 insertions(+), 4 deletions(-) diff --git a/common/Makefile.am b/common/Makefile.am index 446d994bf..db0f0b42d 100644 --- a/common/Makefile.am +++ b/common/Makefile.am @@ -29,5 +29,4 @@ libclutter_cogl_common_la_SOURCES = \ cogl-clip-stack.c \ cogl-fixed.c \ cogl-color.c \ - cogl-mesh.c \ - cogl-mesh.h + cogl-mesh.c diff --git a/gl/Makefile.am b/gl/Makefile.am index 628cff582..ec7750f32 100644 --- a/gl/Makefile.am +++ b/gl/Makefile.am @@ -8,7 +8,8 @@ libclutterinclude_HEADERS = \ $(top_builddir)/clutter/cogl/cogl-path.h \ $(top_builddir)/clutter/cogl/cogl-shader.h \ $(top_builddir)/clutter/cogl/cogl-texture.h \ - $(top_builddir)/clutter/cogl/cogl-types.h + $(top_builddir)/clutter/cogl/cogl-types.h \ + $(top_builddir)/clutter/cogl/cogl-mesh.h INCLUDES = \ -I$(top_srcdir) \ diff --git a/gles/Makefile.am b/gles/Makefile.am index 207bd466f..19867d986 100644 --- a/gles/Makefile.am +++ b/gles/Makefile.am @@ -8,7 +8,8 @@ libclutterinclude_HEADERS = \ $(top_builddir)/clutter/cogl/cogl-path.h \ $(top_builddir)/clutter/cogl/cogl-shader.h \ $(top_builddir)/clutter/cogl/cogl-texture.h \ - $(top_builddir)/clutter/cogl/cogl-types.h + $(top_builddir)/clutter/cogl/cogl-types.h \ + $(top_builddir)/clutter/cogl/cogl-mesh.h INCLUDES = \ -I$(top_srcdir) \