~elementary-os/elementaryos/os-patch-at-spi2-core-xenial

« back to all changes in this revision

Viewing changes to registryd/Makefile.am

  • Committer: RabbitBot
  • Date: 2016-11-16 09:38:52 UTC
  • Revision ID: rabbitbot@elementary.io-20161116093852-xn6hcgpg5y25xooo
Initial import, version 2.18.3-4ubuntu1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
libexec_PROGRAMS = at-spi2-registryd
 
2
 
 
3
at_spi2_registryd_CFLAGS =      \
 
4
        $(GLIB_CFLAGS)          \
 
5
        $(GIO_CFLAGS)           \
 
6
        $(DBUS_CFLAGS)  \
 
7
        $(GOBJ_CFLAGS)          \
 
8
        $(ATK_CFLAGS)           \
 
9
        -I$(top_srcdir)         \
 
10
        -I$(top_builddir)       \
 
11
        -I$(top_builddir)/atspi \
 
12
        -DATSPI_INTROSPECTION_PATH=\"$(pkgdatadir)/$(DEFAULT_ATSPI_INTROSPECTION_PATH)\"
 
13
 
 
14
at_spi2_registryd_LDADD =       \
 
15
        ../atspi/libatspi.la \
 
16
        $(GLIB_LIBS)            \
 
17
        $(GIO_LIBS)             \
 
18
        $(DBUS_LIBS)    \
 
19
        $(GOBJ_CFLAGS)          \
 
20
        $(ATK_LIBS)             \
 
21
        $(X_LIBS)               \
 
22
        $(SM_LIBS)              \
 
23
        $(XTST_LIBS)            \
 
24
        $(XEVIE_LIBS)           \
 
25
        $(DL_LIBS)
 
26
 
 
27
at_spi2_registryd_SOURCES =     \
 
28
        de-marshaller.h         \
 
29
        de-marshaller.c         \
 
30
        de-types.h              \
 
31
        keymasks.h              \
 
32
        paths.h                 \
 
33
        registry-main.c         \
 
34
        registry.c              \
 
35
        registry.h              \
 
36
        introspection.h         \
 
37
        introspection.c         \
 
38
        deviceeventcontroller.c \
 
39
        deviceeventcontroller.h \
 
40
        reentrant-list.c        \
 
41
        reentrant-list.h        \
 
42
        ucs2keysym.c
 
43
 
 
44
X11_SOURCES = \
 
45
        deviceeventcontroller-x11.c \
 
46
        display.h               \
 
47
        display.c               \
 
48
        event-source.c \
 
49
        event-source.h
 
50
 
 
51
if USE_X11
 
52
at_spi2_registryd_SOURCES += $(X11_SOURCES)
 
53
EXTRA_DIST = 
 
54
else
 
55
EXTRA_DIST = $(X11_SOURCES)
 
56
endif
 
57
 
 
58
servicedir=$(datadir)/dbus-1/accessibility-services
 
59
service_in_files = org.a11y.atspi.Registry.service.in
 
60
service_DATA     = $(service_in_files:.service.in=.service)
 
61
 
 
62
$(service_DATA): $(service_in_files) Makefile
 
63
        sed -e "s|[@]LIBEXECDIR[@]|$(libexecdir)|" $(srcdir)/$@.in > $@
 
64
 
 
65
 
 
66
DISTCLEANFILES = org.a11y.atspi.Registry.service
 
67
EXTRA_DIST += org.a11y.atspi.Registry.service.in
 
68
 
 
69
-include $(top_srcdir)/git.mk