c0aa013758
* NEWS: Minor tweaks * TODO: Sync up, mainly with 0.3 todo items * clutter/clutter-behaviour.c: * clutter/clutter-behaviour.h: clutter_behaviour_get_n_actors() / clutter_behaviour_get_nth_actor() Additions. * clutter/clutter-stage.c: (clutter_stage_realize): Experimental (disabled) visual setting code. * clutter/clutter-feature.c: Check for GL_EXT_texture_rectangle (#198 - Frederick Riss) * clutter/clutter-group.c: (clutter_group_allocate_coords): Fix for group size allocation (#199 - Frederick Riss) * clutter/clutter-texture.c: (texture_upload_data): Fix texture unpacking row length (#197 Frederick Riss) * examples/Makefile.am: Fix LDADD in build (#196 - Frederick Riss)
28 lines
649 B
Makefile
28 lines
649 B
Makefile
noinst_PROGRAMS = test super-oh behave
|
|
|
|
INCLUDES = -I$(top_srcdir)/
|
|
LDADD = $(top_builddir)/clutter/libclutter-@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
|