Added initial implementations of DeviceEventController and KeystrokeListener.
[platform/core/uifw/at-spi2-atk.git] / libspi / Makefile.am
1 lib_LTLIBRARIES = libspi.la
2
3 INCLUDES = -I $(top_srcdir)           \
4            -I $(top_builddir)         \
5            -I $(top_srcdir)/libspi    \
6            -I $(top_builddir)/libspi  \
7            $(LIBSPI_CFLAGS)
8
9 LDFLAGS = $(LIBSPI_LIBS) @LT_VERSION_INFO@
10
11 DEBUG_CFLAGS=-DSPI_DEBUG
12
13 CFLAGS += $(DEBUG_CFLAGS)
14
15 libspiincludedir = $(includedir)/libspi
16
17 libspiinclude_HEADERS = accessible.h       \
18                         action.h\
19                         application.h      \
20                         component.h\
21                         desktop.h          \
22                         editabletext.h\
23                         hyperlink.h\
24                         hypertext.h\
25                         image.h\
26                         selection.h\
27                         table.h\
28                         text.h\
29                         value.h\
30                         listener.h   \
31                         keystrokelistener.h     \
32                         accessibleeventlistener.h       \
33                         deviceeventcontroller.h \
34                         registry.h         \
35                         Accessibility.h
36
37 IDL_OUT = Accessibility.h Accessibility-stubs.c Accessibility-skels.c Accessibility-common.c
38
39 IDL = \
40         $(top_srcdir)/idl/Accessibility.idl \
41         $(top_srcdir)/idl/Accessible.idl    \
42         $(top_srcdir)/idl/Application.idl   \
43         $(top_srcdir)/idl/Desktop.idl       \
44         $(top_srcdir)/idl/Event.idl         \
45         $(top_srcdir)/idl/Registry.idl      \
46         $(top_srcdir)/idl/Relation.idl      \
47         $(top_srcdir)/idl/Role.idl          \
48         $(top_srcdir)/idl/State.idl
49
50 BUILT_SOURCES = $(IDL_OUT) Accessibility-imodule.c
51 CLEANFILES+=$(IDL_OUT) Accessibility-imodule.c
52
53 libspi_la_SOURCES = accessible.c         \
54                     accessible.h         \
55                     action.c\
56                     action.h\
57                     application.c        \
58                     application.h        \
59                     component.c          \
60                     component.h          \
61                     desktop.c            \
62                     desktop.h            \
63                     deviceeventcontroller.c \
64                     deviceeventcontroller.h \
65                     editabletext.c\
66                     editabletext.h\
67                     hyperlink.c\
68                     hyperlink.h\
69                     hypertext.c\
70                     hypertext.h\
71                     image.c\
72                     image.h\
73                     keystrokelistener.c\
74                     keystrokelistener.h\
75                     selection.c\
76                     selection.h\
77                     table.c\
78                     table.h\
79                     text.c\
80                     text.h\
81                     value.c\
82                     value.h\
83                     listener.c           \
84                     listener.h           \
85                     accessibleeventlistener.c   \
86                     accessibleeventlistener.h   \
87                     registry.c           \
88                     registry.h           \
89                     $(IDL_OUT)
90
91 IDLFLAGS = -I$(BONOBO_ACTIVATION_IDL_DIR) \
92            -I$(LIBBONOBO_IDL_DIR)         \
93            -I$(top_srcdir)/idl            \
94            --add-imodule
95
96 $(IDL_OUT) Accessibility-imodule.c : $(IDL) $(ORBIT_IDL)
97         $(ORBIT_IDL) -D__ACCESSIBILITY_COMPILATION__ $(IDLFLAGS) $(top_srcdir)/idl/Accessibility.idl
98
99 orbittypelibdir = $(libdir)/orbit
100 orbittypelib_LTLIBRARIES = Accessibility_module.la
101
102 Accessibility_module_la_LDFLAGS = \
103         -export-dynamic -module
104 Accessibility_module_la_SOURCES = \
105         Accessibility-imodule.c