mirror of
https://github.com/brl/mutter.git
synced 2024-11-11 00:26:40 -05:00
790d2165f3
http://bugzilla.clutter-project.org/show_bug.cgi?id=2099 Signed-off-by: Emmanuele Bassi <ebassi@linux.intel.com>
62 lines
2.1 KiB
Makefile
62 lines
2.1 KiB
Makefile
include $(top_srcdir)/build/autotools/Makefile.am.silent
|
|
|
|
EXAMPLES = cally-atkcomponent-example \
|
|
cally-atkeditabletext-example \
|
|
cally-atkevents-example \
|
|
cally-atktext-example \
|
|
cally-clone-example
|
|
|
|
common_ldadd = $(top_builddir)/clutter/libclutter-@CLUTTER_WINSYS@-@CLUTTER_API_VERSION@.la
|
|
|
|
CALLY_UTIL_SOURCES = cally-examples-util.c
|
|
|
|
INCLUDES = \
|
|
-I$(top_srcdir) \
|
|
-I$(top_srcdir)/clutter \
|
|
-I$(top_srcdir)/clutter/cogl \
|
|
-I$(top_builddir)/clutter \
|
|
-I$(top_builddir)/clutter/cogl \
|
|
-I$(top_srcdir)/tests/accessibility
|
|
|
|
noinst_PROGRAMS = $(EXAMPLES)
|
|
|
|
# atk component example
|
|
cally_atkcomponent_example_LDADD = $(CLUTTER_LIBS) $(common_ldadd)
|
|
cally_atkcomponent_example_CFLAGS = $(CLUTTER_CFLAGS) $(MAINTAINER_CFLAGS) \
|
|
-DPREFIXDIR=\"$(libdir)\" \
|
|
$(INCLUDES)
|
|
cally_atkcomponent_example_SOURCES = cally-atkcomponent-example.c \
|
|
$(CALLY_UTIL_SOURCES)
|
|
|
|
# atk text example
|
|
cally_atktext_example_LDADD = $(CLUTTER_LIBS) $(common_ldadd)
|
|
cally_atktext_example_CFLAGS = $(CLUTTER_CFLAGS) $(MAINTAINER_CFLAGS)\
|
|
-DPREFIXDIR=\"$(libdir)\" \
|
|
$(INCLUDES)
|
|
cally_atktext_example_SOURCES = cally-atktext-example.c \
|
|
$(CALLY_UTIL_SOURCES)
|
|
|
|
# atk text example2
|
|
cally_atkevents_example_LDADD = $(CLUTTER_LIBS) $(common_ldadd)
|
|
cally_atkevents_example_CFLAGS = $(CLUTTER_CFLAGS) $(MAINTAINER_CFLAGS)\
|
|
-DPREFIXDIR=\"$(libdir)\" \
|
|
$(INCLUDES)
|
|
cally_atkevents_example_SOURCES = cally-atkevents-example.c \
|
|
$(CALLY_UTIL_SOURCES)
|
|
|
|
# atk editable text example
|
|
cally_atkeditabletext_example_LDADD = $(CLUTTER_LIBS) $(common_ldadd)
|
|
cally_atkeditabletext_example_CFLAGS = $(CLUTTER_CFLAGS) $(MAINTAINER_CFLAGS) \
|
|
-DPREFIXDIR=\"$(libdir)\" \
|
|
$(INCLUDES)
|
|
cally_atkeditabletext_example_SOURCES = cally-atkeditabletext-example.c \
|
|
$(CALLY_UTIL_SOURCES)
|
|
|
|
# cally clone example
|
|
cally_clone_example_LDADD = $(CLUTTER_LIBS) $(common_ldadd)
|
|
cally_clone_example_CFLAGS = $(CLUTTER_CFLAGS) $(MAINTAINER_CFLAGS) \
|
|
-DPREFIXDIR=\"$(libdir)\" \
|
|
$(INCLUDES)
|
|
cally_clone_example_SOURCES = cally-clone-example.c \
|
|
$(CALLY_UTIL_SOURCES)
|