1
2noinst_LTLIBRARIES = libxp.la
3
4AM_CPPFLAGS = \
5	$(OPENXML_CFLAGS) \
6	-I$(srcdir)/../../imp/xp -I$(srcdir)/../../exp/xp \
7	-DABI_BUILD_VERSION=\"$(VERSION)\"
8
9libxp_la_SOURCES = \
10	ie_impexp_OpenXML.cpp \
11	OXML_Document.cpp \
12	OXML_Document.h \
13	OXML_Element.cpp \
14	OXML_Element.h \
15	OXML_Element_Run.cpp \
16	OXML_Element_Run.h \
17	OXML_Element_Text.cpp \
18	OXML_Element_Text.h \
19	OXML_Element_Paragraph.cpp \
20	OXML_Element_Paragraph.h \
21	OXML_Element_Table.cpp \
22	OXML_Element_Table.h \
23	OXML_Element_Row.cpp \
24	OXML_Element_Row.h \
25	OXML_Element_Cell.cpp \
26	OXML_Element_Cell.h \
27	OXML_Element_List.cpp \
28	OXML_Element_List.h \
29	OXML_Element_Math.cpp \
30	OXML_Element_Math.h \
31	OXML_Element_Image.cpp \
32	OXML_Element_Image.h \
33	OXML_Element_Hyperlink.cpp \
34	OXML_Element_Hyperlink.h \
35	OXML_Element_Bookmark.cpp \
36	OXML_Element_Bookmark.h \
37	OXML_Element_Field.cpp \
38	OXML_Element_Field.h \
39	OXML_Element_TextBox.cpp \
40	OXML_Element_TextBox.h \
41	OXML_FontManager.cpp \
42	OXML_LangToScriptConverter.h \
43	OXML_FontManager.h \
44	OXML_ObjectWithAttrProp.cpp \
45	OXML_ObjectWithAttrProp.h \
46	OXML_Section.cpp \
47	OXML_Section.h \
48	OXML_Style.cpp \
49	OXML_Style.h \
50	OXML_List.h \
51	OXML_List.cpp \
52	OXML_Image.h \
53	OXML_Image.cpp \
54	OXML_Theme.cpp \
55	OXML_Theme.h \
56	OXML_Types.h
57
58OXML_LangToScriptConverter.h: $(srcdir)/OXML_LangToScriptConverter.gperf
59	gperf $< >$@
60
61EXTRA_DIST = \
62	converter.pl \
63	OXML_LangToScriptConverter.gperf
64
65