d61ee2240b
* clutter/Makefile.am: Make sure clutter.h included. * clutter/clutter-stage.c: (clutter_stage_realize), (clutter_stage_get_actor_at_pos): Select for motion events on X window. Return highest rather than lowest found actor for actor_at_pos. * examples/Makefile.am: Remove test-text, remane test video. * examples/README: Add info about the included examples. * examples/test-video.c: * examples/video-player.c: Redo test-video a little nicer and rename. * examples/video-cube.c: Fix so it at least 'works' again. * examples/test.c: Clean up a little.
43 lines
1.3 KiB
Makefile
43 lines
1.3 KiB
Makefile
noinst_PROGRAMS = test video-player video-cube super-oh
|
|
|
|
INCLUDES = -I$(top_srcdir)/
|
|
|
|
test_SOURCES = test.c
|
|
test_CFLAGS = $(CLUTTER_CFLAGS) $(GST_CFLAGS) $(GCONF_CFLAGS)
|
|
test_LDFLAGS = \
|
|
$(CLUTTER_LIBS) \
|
|
$(GST_LIBS) \
|
|
$(GCONF_LIBS) \
|
|
$(top_builddir)/clutter/libclutter-@CLUTTER_MAJORMINOR@.la
|
|
|
|
video_player_SOURCES = video-player.c
|
|
video_player_CFLAGS = $(CLUTTER_CFLAGS) $(GST_CFLAGS) $(GCONF_CFLAGS)
|
|
video_player_LDFLAGS = \
|
|
$(CLUTTER_LIBS) \
|
|
$(GST_LIBS) \
|
|
$(GCONF_LIBS) \
|
|
$(top_builddir)/clutter/libclutter-@CLUTTER_MAJORMINOR@.la
|
|
|
|
video_cube_SOURCES = video-cube.c
|
|
video_cube_CFLAGS = $(CLUTTER_CFLAGS) $(GST_CFLAGS) $(GCONF_CFLAGS)
|
|
video_cube_LDFLAGS = \
|
|
$(CLUTTER_LIBS) \
|
|
$(GST_LIBS) \
|
|
$(GCONF_LIBS) \
|
|
$(top_builddir)/clutter/libclutter-@CLUTTER_MAJORMINOR@.la
|
|
|
|
super_oh_SOURCES = super-oh.c
|
|
super_oh_CFLAGS = $(CLUTTER_CFLAGS) $(GST_CFLAGS) $(GCONF_CFLAGS)
|
|
super_oh_LDFLAGS = \
|
|
$(CLUTTER_LIBS) \
|
|
$(GST_LIBS) \
|
|
$(GCONF_LIBS) \
|
|
$(top_builddir)/clutter/libclutter-@CLUTTER_MAJORMINOR@.la
|
|
|
|
EXTRA_DIST = redhand.png \
|
|
clutter-logo-800x600.png \
|
|
media-actions-pause.png \
|
|
media-actions-start.png \
|
|
vid-panel.png \
|
|
README
|