244cacd14b
* Makefile.am: * clutter.pc.in: * clutter/Makefile.am: * clutter/clutter-backend-glx.c: * clutter/clutter-backend-glx.h: * clutter/clutter-event.c: * clutter/clutter-feature.c: * clutter/clutter-group.c: * clutter/clutter-main.c: * clutter/clutter-main.h: * clutter/clutter-private.h: * clutter/clutter-stage-glx.c: * clutter/clutter-stage-glx.h: * clutter/clutter-stage.c: * clutter/clutter-stage.h: * clutter/clutter-util.c: * clutter/clutter-util.h: * clutter/pango/pangoclutter-render.c: * configure.ac: * examples/Makefile.am: Initial work in supporting different GL backends (ie. GLX/EGL/DirectFB etc). Currently just GLX supported and now mostly self contained. * TODO: Add a note about caching glenables
28 lines
667 B
Makefile
28 lines
667 B
Makefile
noinst_PROGRAMS = test super-oh behave
|
|
|
|
INCLUDES = -I$(top_srcdir)/
|
|
LDADD = $(top_builddir)/clutter/libclutter-@CLUTTER_FLAVOUR@-@CLUTTER_MAJORMINOR@.la
|
|
|
|
test_SOURCES = test.c
|
|
test_CFLAGS = $(CLUTTER_CFLAGS) $(GCONF_CFLAGS)
|
|
test_LDFLAGS = \
|
|
$(CLUTTER_LIBS) \
|
|
$(GCONF_LIBS)
|
|
|
|
super_oh_SOURCES = super-oh.c
|
|
super_oh_CFLAGS = $(CLUTTER_CFLAGS) $(GCONF_CFLAGS)
|
|
super_oh_LDFLAGS = \
|
|
$(CLUTTER_LIBS) \
|
|
$(GCONF_LIBS)
|
|
|
|
behave_SOURCES = behave.c
|
|
behave_CFLAGS = $(CLUTTER_CFLAGS) $(GCONF_CFLAGS)
|
|
behave_LDFLAGS = \
|
|
$(CLUTTER_LIBS) \
|
|
$(GCONF_LIBS)
|
|
|
|
|
|
EXTRA_DIST = redhand.png \
|
|
clutter-logo-800x600.png \
|
|
README
|