Update FSF postal address.
[m17n/m17n-lib.git] / src / Makefile.am
1 # Copyright (C) 2003, 2004, 2005, 2006
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
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         internal.h \
37         plist.h plist.c \
38         m17n-core.h m17n-core.c \
39         m17n-misc.h \
40         mtext.h mtext.c \
41         symbol.h symbol.c \
42         textprop.h textprop.c \
43         mtext-lbrk.c mtext-wseg.c
44
45 libm17n_core_la_LIBADD = @XML2_LD_FLAGS@ @THAI_WORDSEG_LD_FLAGS@
46 libm17n_core_la_LDFLAGS = -export-dynamic ${VINFO}
47
48 libm17n_la_SOURCES = \
49         charset.h charset.c \
50         coding.h coding.c \
51         database.h database.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 GUI_SOURCES = \
60         face.h face.c \
61         font.h font.c font-ft.c font-flt.c \
62         fontset.h fontset.c \
63         draw.c \
64         input-gui.c \
65         internal-gui.h \
66         m17n-gui.h m17n-gui.c
67
68 OPTIONAL_LD_FLAGS = \
69         @FREETYPE_LD_FLAGS@ \
70         @FRIBIDI_LD_FLAGS@ \
71         @OTF_LD_FLAGS@ \
72         @FONTCONFIG_LD_FLAGS@
73
74 libm17n_gui_la_SOURCES = ${GUI_SOURCES}
75 libm17n_gui_la_LIBADD = ${OPTIONAL_LD_FLAGS} ${top_builddir}/src/libm17n.la
76 libm17n_gui_la_LDFLAGS = -export-dynamic ${VINFO}
77
78 X_LD_FLAGS = ${X_PRE_LIBS} ${X_LIBS} @X11_LD_FLAGS@ ${X_EXTRA_LIBS}
79
80 libm17n_X_la_SOURCES = m17n-X.h m17n-X.c
81 libm17n_X_la_LIBADD = ${X_LD_FLAGS} @XFT2_LD_FLAGS@ ${top_builddir}/src/libm17n-gui.la
82 libm17n_X_la_LDFLAGS = -module ${VINFO}
83
84 libm17n_gd_la_SOURCES = m17n-gd.c
85 libm17n_gd_la_LIBADD = @GD_LD_FLAGS@ ${top_builddir}/src/libm17n-gui.la
86 libm17n_gd_la_LDFLAGS = -module ${VINFO}
87
88 AM_CPPFLAGS = -DM17NDIR=\"@M17NDIR@\" -DGETTEXTDIR=\"@GETTEXTDIR@\"
89
90
91 BASICHEADERS = m17n-core.h m17n.h m17n-misc.h
92 if WITH_GUI
93 include_HEADERS = $(BASICHEADERS) m17n-gui.h m17n-X.h
94 else
95 include_HEADERS = $(BASICHEADERS)
96 endif
97
98 SRC =   ${libm17n_core_la_SOURCES} \
99         ${libm17n_la_SOURCES} \
100         ${libm17n_gui_la_SOURCES} \
101         ${libm17n_X_la_SOURCES} \
102         ${libm17n_gd_la_SOURCES}
103
104 TAGS: ${SRC}
105         etags ${SRC}
106
107 if MAINTAINER_MODE
108 noinst_PROGRAMS = linkcore linkshell linkgui
109
110 linkcore_SOURCES = linkcore.c
111 linkcore_LDADD = ${top_builddir}/src/libm17n-core.la
112 linkcore_LDFLAGS = -static
113
114 linkshell_SOURCES = linkshell.c
115 linkshell_LDADD = ${top_builddir}/src/libm17n.la
116 linkshell_LDFLAGS = -static
117
118 linkgui_SOURCES = linkgui.c
119 linkgui_LDADD = ${top_builddir}/src/libm17n-gui.la
120 linkgui_LDFLAGS = -static
121 endif