summaryrefslogtreecommitdiff
path: root/doc/cookbook/examples/Makefile.am
blob: 0d97ce6be9f4d5de1601889bf44ce061ffa402df (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
include $(top_srcdir)/build/autotools/Makefile.am.silent

NULL =

EXTRA_DIST =

noinst_PROGRAMS =
examples_DATA =

examplesdir = $(datadir)/clutter-1.0/cookbook/examples

all_examples = \
	actors-composite-main 			\
	animations-complex			\
	animations-looping-animator		\
	animations-looping-implicit		\
	animations-looping-state		\
	animations-moving-animator		\
	animations-moving-implicit		\
	animations-moving-state			\
	animations-path				\
	animations-path-circle			\
	animations-path-easing			\
	animations-reuse			\
	animations-rotating			\
	animations-scaling			\
	animations-scaling-zoom			\
	effects-basic				\
	effects-built-in      			\
	effects-custom-deform			\
	text-shadow				\
	textures-reflection			\
	textures-split-go			\
	textures-sub-texture			\
	layouts-bind-constraint-allocation	\
	layouts-bind-constraint-overlay		\
	layouts-bind-constraint-stage		\
	layouts-box 				\
	layouts-box-menu 			\
	layouts-box-property-effects 		\
	layouts-stacking 			\
	layouts-stacking-diff-sized-actors	\
	events-mouse-scroll 			\
	events-pointer-motion			\
	events-pointer-motion-crossing		\
	events-pointer-motion-stacked		\
	events-pointer-motion-scribbler		\
	textures-crossfade			\
	textures-crossfade-cogl			\
	textures-crossfade-slideshow		\
	script-ui				\
	script-signals				\
	script-states				\
	events-buttons				\
	events-buttons-click			\
	events-buttons-lasso			\
	$(NULL)

LDADD = $(top_builddir)/clutter/libclutter-@CLUTTER_API_VERSION@.la $(LIBM)

AM_CFLAGS = $(CLUTTER_CFLAGS)

AM_CPPFLAGS = \
	-I$(top_srcdir)/ \
	-I$(top_builddir)/ \
	-I$(top_srcdir)/clutter \
	-I$(top_builddir)/clutter \
	-DG_DISABLE_SINGLE_INCLUDES \
	-DCOGL_DISABLE_DEPRECATION_WARNINGS \
	-DCLUTTER_DISABLE_DEPRECATION_WARNINGS \
	$(NULL)

AM_LDFLAGS = $(CLUTTER_LIBS) -export-dynamic

actors_composite_main_SOURCES              = cb-button.c cb-button.h actors-composite-main.c
animations_complex_SOURCES                 = animations-complex.c
animations_looping_animator_SOURCES        = animations-looping-animator.c
animations_looping_implicit_SOURCES        = animations-looping-implicit.c
animations_looping_state_SOURCES           = animations-looping-state.c
animations_moving_animator_SOURCES         = animations-moving-animator.c
animations_moving_implicit_SOURCES         = animations-moving-implicit.c
animations_moving_state_SOURCES            = animations-moving-state.c
animations_path_SOURCES                    = animations-path.c
animations_path_circle_SOURCES             = animations-path-circle.c
animations_path_easing_SOURCES             = animations-path-easing.c
animations_reuse_SOURCES                   = animations-reuse.c
animations_rotating_SOURCES                = animations-rotating.c
animations_scaling_SOURCES                 = animations-scaling.c
animations_scaling_zoom_SOURCES            = animations-scaling-zoom.c
effects_basic_SOURCES                      = cb-border-effect.c \
                                             cb-border-effect.h \
                                             cb-background-effect.c \
                                             cb-background-effect.h \
                                             effects-basic.c
effects_built_in_SOURCES                   = effects-built-in.c
effects_custom_deform_SOURCES              = cb-page-fold-effect.c cb-page-fold-effect.h effects-custom-deform.c
text_shadow_SOURCES                        = text-shadow.c
textures_reflection_SOURCES                = textures-reflection.c
textures_split_go_SOURCES                  = textures-split-go.c
textures_sub_texture_SOURCES               = textures-sub-texture.c
layouts_bind_constraint_allocation_SOURCES = layouts-bind-constraint-allocation.c
layouts_bind_constraint_overlay_SOURCES    = layouts-bind-constraint-overlay.c
layouts_bind_constraint_stage_SOURCES      = layouts-bind-constraint-stage.c
layouts_box_SOURCES                        = layouts-box.c
layouts_box_menu_SOURCES                   = layouts-box-menu.c
layouts_box_property_effects_SOURCES       = layouts-box-property-effects.c
layouts_stacking_SOURCES                   = layouts-stacking.c
layouts_stacking_diff_sized_actors_SOURCES = layouts-stacking-diff-sized-actors.c
events_mouse_scroll_SOURCES                = events-mouse-scroll.c
events_pointer_motion_SOURCES              = events-pointer-motion.c
events_pointer_motion_crossing_SOURCES     = events-pointer-motion-crossing.c
events_pointer_motion_stacked_SOURCES      = events-pointer-motion-stacked.c
events_pointer_motion_scribbler_SOURCES    = events-pointer-motion-scribbler.c
textures_crossfade_SOURCES                 = textures-crossfade.c
textures_crossfade_cogl_SOURCES            = textures-crossfade-cogl.c
textures_crossfade_slideshow_SOURCES       = textures-crossfade-slideshow.c
script_ui_SOURCES                          = script-ui.c
script_signals_SOURCES                     = script-signals.c
script_states_SOURCES			   = script-states.c
events_buttons_SOURCES                     = events-buttons.c
events_buttons_click_SOURCES               = events-buttons-click.c
events_buttons_lasso_SOURCES               = events-buttons-lasso.c

ui_data = \
	$(srcdir)/animations-complex.json		\
	$(srcdir)/animations-complex-overlapping.json	\
	$(srcdir)/animations-reuse-animation.json	\
	$(srcdir)/animations-reuse-ui.json		\
	$(srcdir)/script-signals.json			\
	$(srcdir)/script-states.json			\
	$(srcdir)/script-ui.json			\
	$(NULL)

img_data = \
	$(srcdir)/redhand.png \
	$(srcdir)/smiley.png \
	$(NULL)

EXTRA_DIST += $(ui_data) $(img_data)

examples_DATA += $(ui_data) $(img_data) $(srcdir)/*.c $(srcdir)/*.h
noinst_PROGRAMS += $(all_examples)

-include $(top_srcdir)/build/autotools/Makefile.am.gitignore