blob: b9d641fce1b5daf004eff1916edb32b31447a111 (
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
|
bin_PROGRAMS = \
weekeyboard
AM_CFLAGS= \
@WAYLAND_CFLAGS@ \
@EFL_CFLAGS@ \
@IBUS_CFLAGS@ \
-DPKGDATADIR='"$(pkgdatadir)"'
AM_LDFLAGS= \
@WAYLAND_LIBS@ \
@EFL_LIBS@ \
@IBUS_LIBS@
weekeyboard_SOURCES= \
wkb-main.c \
wkb-log.c \
wkb-log.h \
wkb-ibus.h \
wkb-ibus.c \
wkb-ibus-helper.h \
wkb-ibus-helper.c \
wkb-ibus-defs.h \
wkb-ibus-panel.c \
wkb-ibus-config.c \
wkb-ibus-config-key.c \
wkb-ibus-config-key.h \
wkb-ibus-config-eet.c \
wkb-ibus-config-eet.h \
input-method-protocol.c \
input-method-client-protocol.h \
text-protocol.c \
text-client-protocol.h
noinst_PROGRAMS = \
weekeyboard-config-eet-test \
weekeyboard-ibus-test
weekeyboard_config_eet_test_SOURCES = \
wkb-log.c \
wkb-log.h \
wkb-ibus-config-key.c \
wkb-ibus-config-key.h \
wkb-ibus-config-eet.c \
wkb-ibus-config-eet.h \
wkb-ibus-config-eet-test.c
weekeyboard_ibus_test_SOURCES = \
wkb-ibus.h \
wkb-ibus.c \
wkb-ibus-helper.h \
wkb-ibus-helper.c \
wkb-log.c \
wkb-log.h \
wkb-ibus-defs.h \
wkb-ibus-panel.c \
wkb-ibus-config.c \
wkb-ibus-config-key.c \
wkb-ibus-config-key.h \
wkb-ibus-config-eet.c \
wkb-ibus-config-eet.h \
wkb-ibus-test.c
@wayland_scanner_rules@
BUILT_SOURCES= \
input-method-protocol.c \
input-method-client-protocol.h \
text-protocol.c \
text-client-protocol.h
|