~ubuntu-branches/ubuntu/precise/clutter-1.0/precise

« back to all changes in this revision

Viewing changes to clutter/cogl/gl/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Emilio Pozuelo Monfort
  • Date: 2010-03-21 13:27:56 UTC
  • mto: (2.1.3 experimental) (1.3.1 upstream)
  • mto: This revision was merged to the branch mainline in revision 8.
  • Revision ID: james.westby@ubuntu.com-20100321132756-nf8yd30yxo3zzwcm
Tags: upstream-1.2.2
ImportĀ upstreamĀ versionĀ 1.2.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
include $(top_srcdir)/build/autotools/Makefile.am.silent
2
 
 
3
 
NULL =
4
 
 
5
 
cogl_headers = \
6
 
        $(top_builddir)/clutter/cogl/cogl-defines-gl.h  \
7
 
        $(top_srcdir)/clutter/cogl/cogl-color.h         \
8
 
        $(top_srcdir)/clutter/cogl/cogl-deprecated.h    \
9
 
        $(top_srcdir)/clutter/cogl/cogl-fixed.h         \
10
 
        $(top_srcdir)/clutter/cogl/cogl-offscreen.h     \
11
 
        $(top_srcdir)/clutter/cogl/cogl-path.h          \
12
 
        $(top_srcdir)/clutter/cogl/cogl-shader.h        \
13
 
        $(top_srcdir)/clutter/cogl/cogl-bitmap.h        \
14
 
        $(top_srcdir)/clutter/cogl/cogl-texture.h       \
15
 
        $(top_srcdir)/clutter/cogl/cogl-types.h         \
16
 
        $(top_srcdir)/clutter/cogl/cogl-vertex-buffer.h \
17
 
        $(top_srcdir)/clutter/cogl/cogl-material.h      \
18
 
        $(top_srcdir)/clutter/cogl/cogl-matrix.h        \
19
 
        $(top_srcdir)/clutter/cogl/cogl-debug.h         \
20
 
        $(NULL)
21
 
 
22
 
cogl_priv_headers = \
23
 
        cogl-texture-private.h  \
24
 
        cogl-fbo.h              \
25
 
        cogl-shader-private.h   \
26
 
        cogl-program.h          \
27
 
        cogl-context.h          \
28
 
        $(NULL)
29
 
 
30
 
cogl_sources = \
31
 
        cogl.c                  \
32
 
        cogl-primitives.c       \
33
 
        cogl-texture.c          \
34
 
        cogl-fbo.c              \
35
 
        cogl-shader.c           \
36
 
        cogl-program.c          \
37
 
        cogl-context.c          \
38
 
        $(NULL)
39
 
 
40
 
INCLUDES = \
41
 
        -I$(top_srcdir)/clutter/cogl \
42
 
        -I$(top_srcdir)/clutter/cogl/common \
43
 
        -I$(top_srcdir)/clutter/cogl/$(CLUTTER_COGL) \
44
 
        -I$(top_srcdir)/clutter \
45
 
        -I$(top_builddir)/clutter \
46
 
        -I$(top_builddir)/clutter/cogl \
47
 
        -DG_DISABLE_SINGLE_INCLUDES \
48
 
        -DG_LOG_DOMAIN=\"Cogl-GL\" \
49
 
        -DCLUTTER_COMPILATION
50
 
 
51
 
noinst_LTLIBRARIES = libclutter-cogl-gl.la
52
 
 
53
 
libclutter_cogl_gl_la_CPPFLAGS = $(CLUTTER_CFLAGS) $(COGL_DEBUG_CFLAGS) $(CLUTTER_DEBUG_CFLAGS) $(MAINTAINER_CFLAGS)
54
 
libclutter_cogl_gl_la_LIBADD = -lm $(CLUTTER_LIBS) $(top_builddir)/clutter/cogl/common/libclutter-cogl-common.la
55
 
libclutter_cogl_gl_la_DEPENDENCIES = $(top_builddir)/clutter/cogl/common/libclutter-cogl-common.la
56
 
libclutter_cogl_gl_la_SOURCES = \
57
 
        $(top_builddir)/clutter/cogl/cogl.h     \
58
 
        $(cogl_headers)                         \
59
 
        $(cogl_priv_headers)                    \
60
 
        $(cogl_sources)                         \
61
 
        $(NULL)
62
 
 
63
 
EXTRA_DIST = cogl-defines.h.in