[elementary] Documenting/exemplifying the following:
[framework/uifw/elementary.git] / src / examples / Makefile.am
1 MAINTAINERCLEANFILES = Makefile.in
2
3 .PHONY: screenshots
4
5 pkglibdir = $(datadir)/$(PACKAGE)/examples
6
7 AM_CPPFLAGS = \
8 -I. \
9 -I$(top_srcdir)/src/lib \
10 -I$(top_builddir)/src/lib \
11 -DPACKAGE_DATA_DIR="\"$(datadir)/elementary\"" \
12 -DPACKAGE_BIN_DIR=\"$(bindir)\" \
13 -DPACKAGE_LIB_DIR=\"$(libdir)\" \
14 @ELEMENTARY_EDBUS_CFLAGS@ \
15 @ELEMENTARY_EFREET_CFLAGS@ \
16 @ELEMENTARY_ETHUMB_CFLAGS@ \
17 @ELEMENTARY_CFLAGS@
18
19 LDADD = \
20         @ELEMENTARY_LIBS@ \
21         $(top_builddir)/src/lib/libelementary.la
22
23 EDJE_CC = @edje_cc@
24 EDJE_FLAGS_VERBOSE_ =
25 EDJE_FLAGS_VERBOSE_0 =
26 EDJE_FLAGS_VERBOSE_1 = -v
27 EDJE_FLAGS = $(EDJE_FLAGS_$(V))
28
29 SRCS = \
30         actionslider_example_01.c \
31         anchorblock_example_01.c \
32         animator_example_01.c \
33         bubble_example_01.c \
34         button_example_01.c \
35         colorselector_example_01.c
36         frame_example_01.c \
37         transit_example_01.c \
38         transit_example_02.c \
39         transit_example_03.c \
40         transit_example_04.c \
41         bg_example_01.c \
42         bg_example_02.c \
43         bg_example_03.c \
44         box_example_02.c \
45         general_funcs_example.c \
46         theme_example_01.c \
47         theme_example_02.c \
48         clock_example.c \
49         theme_example.edc
50
51 pkglib_PROGRAMS =
52
53 if EFL_INSTALL_EXAMPLES
54 filesdir = $(datadir)/$(PACKAGE)/examples
55 files_DATA = $(SRCS)
56 endif
57
58 if EFL_BUILD_EXAMPLES
59 theme_example.edj: Makefile theme_example.edc
60         $(EDJE_CC) $(EDJE_FLAGS) \
61         $(top_srcdir)/src/examples/theme_example.edc \
62         $(top_builddir)/src/examples/theme_example.edj
63
64 clean-local:
65         rm -f *.edj
66
67 pkglib_PROGRAMS += \
68         actionslider_example_01 \
69         anchorblock_example_01 \
70         animator_example_01 \
71         bubble_example_01 \
72         button_example_01 \
73         colorselector_example_01 \
74         frame_example_01 \
75         transit_example_01 \
76         transit_example_02 \
77         transit_example_03 \
78         transit_example_04 \
79         bg_example_01 \
80         bg_example_02 \
81         bg_example_03 \
82         box_example_02 \
83         general_funcs_example \
84         theme_example_01 \
85         theme_example_02 \
86         clock_example \
87         theme_example.edj
88
89 # This variable will hold the list of screenshots that will be made
90 # by "make screenshots". Each item in the list is of the form:
91 # <example executable>:<screenshot filename>:<delay in seconds>
92 SCREENSHOTS = \
93         actionslider_example_01:actionslider_01.png:0.0 \
94         bg_example_02:bg_01.png:0.0 \
95         box_example_02:box_example_02.png:1.3 \
96         bubble_example_01:bubble_example_01.png:0.0 \
97         button_example_01:button_01.png:0.0 \
98         colorselector_example_01:colorselector_example_01.png:0.0 \
99         animator_example_01:animator_example_01.png:0.2 \
100         animator_example_01:animator_example_02.png:0.5 \
101         animator_example_01:animator_example_03.png:0.9 \
102         frame_example_01:frame_example_01.png:0.0 \
103         theme_example_01:theme_example_01.png:0.0 \
104         clock_example:clock_example.png:0.5
105
106 screenshots: all
107         @mkdir -p $(top_srcdir)/doc/img/screenshots
108         @for ss in $(SCREENSHOTS); do \
109                 SS_ENTRY=($${ss//:/ }) ; \
110                 EXAMPLE=$${SS_ENTRY[0]} ; \
111                 SS_FILE=$${SS_ENTRY[1]} ; \
112                 SS_DELAY=$${SS_ENTRY[2]} ; \
113                 ELM_ENGINE="shot:delay=$${SS_DELAY}:file=$(top_srcdir)/doc/img/screenshots/$${SS_FILE}" ./$${EXAMPLE} ; \
114                 convert $(top_srcdir)/doc/img/screenshots/$${SS_FILE} $(top_srcdir)/doc/img/screenshots/$${SS_FILE/.png/.eps} ; \
115         done
116
117 else
118
119 screenshots:
120         @echo "Examples are not built. Run \"./configure --enable-build-examples\" first."
121
122 endif