blob: 208751af54ade12d1b04a783a3d0089d8b66aeaf (
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
|
lib_LTLIBRARIES = libatk.la
libatk_la_SOURCES = \
atkaction.c \
atkcomponent.c \
atkeditabletext.c \
atkhyperlink.c \
atkhypertext.c \
atkimage.c \
atknoopobject.c \
atknoopobject.h \
atknoopobjectfactory.c \
atknoopobjectfactory.h \
atkobject.c \
atkobjectfactory.c \
atkregistry.c \
atkrelation.c \
atkrelationset.c \
atkselection.c \
atkstateset.c \
atktable.c \
atktext.c \
atkutil.c \
atkvalue.c
INCLUDES = \
-I$(top_srcdir) \
@DEP_CFLAGS@
LDFLAGS = \
-no-undefined \
@DEP_LIBS@
libatkincludedir=$(includedir)/atk-1.0/atk
libatkinclude_HEADERS = \
atk.h \
atkaction.h \
atkcomponent.h \
atkeditabletext.h \
atkhyperlink.h \
atkhypertext.h \
atkobject.h \
atkobjectfactory.h \
atkimage.h \
atkregistry.h \
atkrelation.h \
atkrelationset.h \
atkselection.h \
atkstateset.h \
atktable.h \
atktext.h \
atkutil.h \
atkvalue.h
|