Copyright year updated.
[m17n/m17n-lib.git] / src / Makefile.am
1 # Copyright (C) 2003, 2004, 2005, 2006, 2007
2 #   National Institute of Advanced Industrial Science and Technology (AIST)
3 #   Registration Number H15PRO112
4
5 # This file is part of the m17n library.
6
7 # The m17n library is free software; you can redistribute it and/or
8 # modify it under the terms of the GNU Lesser General Public License
9 # as published by the Free Software Foundation; either version 2.1 of
10 # the License, or (at your option) any later version.
11
12 # The m17n library is distributed in the hope that it will be useful,
13 # but WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15 # Lesser General Public License for more details.
16
17 # You should have received a copy of the GNU Lesser General Public
18 # License along with the m17n library; if not, write to the Free
19 # Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
20 # Boston, MA 02110-1301, USA.
21
22 VINFO = -version-info @API_VERSION@
23
24 BASICBUILDS = libm17n-core.la libm17n.la libm17n-flt.la
25 if WITH_GUI
26 BUILD_LIBS = $(BASICBUILDS) libm17n-gui.la libm17n-X.la libm17n-gd.la
27 else
28 BUILD_LIBS = $(BASICBUILDS)
29 endif
30
31 lib_LTLIBRARIES = $(BUILD_LIBS)
32
33 libm17n_core_la_SOURCES = \
34         character.h character.c \
35         chartab.h chartab.c \
36         database.h database.c \
37         internal.h \
38         plist.h plist.c \
39         m17n-core.h m17n-core.c \
40         m17n-misc.h \
41         mtext.h mtext.c \
42         symbol.h symbol.c \
43         textprop.h textprop.c \
44         mtext-lbrk.c mtext-wseg.c
45
46 libm17n_core_la_LIBADD = @XML2_LD_FLAGS@ @THAI_WORDSEG_LD_FLAGS@
47 libm17n_core_la_LDFLAGS = -export-dynamic ${VINFO}
48
49 libm17n_la_SOURCES = \
50         charset.h charset.c \
51         coding.h coding.c \
52         input.h input.c \
53         language.h language.c \
54         mlocale.h locale.c \
55         m17n.h m17n.c
56 libm17n_la_LIBADD = ${top_builddir}/src/libm17n-core.la -ldl
57 libm17n_la_LDFLAGS = -export-dynamic ${VINFO}
58
59 FLT_SOURCES = \
60         m17n-flt.h m17n-flt.c
61
62 libm17n_flt_la_SOURCES = ${FLT_SOURCES}
63 libm17n_flt_la_LIBADD = ${top_builddir}/src/libm17n-core.la
64 libm17n_flt_la_LDFLAGS = -export-dynamic ${VINFO}
65
66 GUI_SOURCES = \
67         face.h face.c \
68         font.h font.c font-ft.c \
69         fontset.h fontset.c \
70         draw.c \
71         input-gui.c \
72         internal-gui.h \
73         m17n-gui.h m17n-gui.c
74
75 OPTIONAL_LD_FLAGS = \
76         @FREETYPE_LD_FLAGS@ \
77         @FRIBIDI_LD_FLAGS@ \
78         @OTF_LD_FLAGS@ \
79         @FONTCONFIG_LD_FLAGS@
80
81 libm17n_gui_la_SOURCES = ${GUI_SOURCES}
82 libm17n_gui_la_LIBADD = ${OPTIONAL_LD_FLAGS} ${top_builddir}/src/libm17n-flt.la ${top_builddir}/src/libm17n.la
83 libm17n_gui_la_LDFLAGS = -export-dynamic ${VINFO}
84
85 X_LD_FLAGS = ${X_PRE_LIBS} ${X_LIBS} @X11_LD_FLAGS@ ${X_EXTRA_LIBS}
86
87 libm17n_X_la_SOURCES = m17n-X.h m17n-X.c
88 libm17n_X_la_LIBADD = ${X_LD_FLAGS} @XFT2_LD_FLAGS@ ${top_builddir}/src/libm17n-gui.la
89 libm17n_X_la_LDFLAGS = -module ${VINFO}
90
91 libm17n_gd_la_SOURCES = m17n-gd.c
92 libm17n_gd_la_LIBADD = @GD_LD_FLAGS@ ${top_builddir}/src/libm17n-gui.la
93 libm17n_gd_la_LDFLAGS = -module ${VINFO}
94
95 AM_CPPFLAGS = -DM17NDIR=\"@M17NDIR@\" -DGETTEXTDIR=\"@GETTEXTDIR@\"
96
97
98 BASICHEADERS = m17n-core.h m17n.h m17n-misc.h m17n-flt.h
99 if WITH_GUI
100 include_HEADERS = $(BASICHEADERS) m17n-gui.h m17n-X.h
101 else
102 include_HEADERS = $(BASICHEADERS)
103 endif
104
105 SRC =   ${libm17n_core_la_SOURCES} \
106         ${libm17n_la_SOURCES} \
107         ${libm17n_gui_la_SOURCES} \
108         ${libm17n_X_la_SOURCES} \
109         ${libm17n_gd_la_SOURCES}
110
111 TAGS: ${SRC}
112         etags ${SRC}
113
114 if MAINTAINER_MODE
115 noinst_PROGRAMS = linkcore linkshell linkgui
116
117 linkcore_SOURCES = linkcore.c
118 linkcore_LDADD = ${top_builddir}/src/libm17n-core.la
119 linkcore_LDFLAGS = -static
120
121 linkshell_SOURCES = linkshell.c
122 linkshell_LDADD = ${top_builddir}/src/libm17n.la
123 linkshell_LDFLAGS = -static
124
125 linkgui_SOURCES = linkgui.c
126 linkgui_LDADD = ${top_builddir}/src/libm17n-gui.la
127 linkgui_LDFLAGS = -static
128 endif