(mface_put_prop): If the new value is the same as the
[m17n/m17n-lib.git] / src / Makefile.am
1 # Copyright (C) 2003, 2004
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., 59 Temple Place, Suite 330, Boston, MA
20 # 02111-1307, USA.
21
22 VINFO = -version-info @API_VERSION@
23
24 lib_LTLIBRARIES = \
25         libm17n-core.la \
26         libm17n.la \
27         libm17n-gui.la \
28         libm17n-X.la \
29         libm17n-gd.la
30
31 libm17n_core_la_SOURCES = \
32         character.h character.c \
33         chartab.h chartab.c \
34         internal.h \
35         plist.h plist.c \
36         m17n-core.h m17n-core.c \
37         m17n-misc.h \
38         mtext.h mtext.c \
39         symbol.h symbol.c \
40         textprop.h textprop.c
41
42 libm17n_core_la_LIBADD = @XML2_LD_FLAGS@
43 libm17n_core_la_LDFLAGS = -export-dynamic ${VINFO}
44
45 libm17n_la_SOURCES = \
46         charset.h charset.c \
47         coding.h coding.c \
48         database.h database.c \
49         input.h input.c \
50         language.h language.c \
51         mlocale.h locale.c \
52         m17n.h m17n.c
53 libm17n_la_LIBADD = ${top_srcdir}/src/libm17n-core.la -ldl
54 libm17n_la_LDFLAGS = -export-dynamic ${VINFO}
55
56 GUI_SOURCES = \
57         face.h face.c \
58         font.h font.c font-ft.c font-flt.c \
59         fontset.h fontset.c \
60         draw.c \
61         input-gui.c \
62         internal-gui.h \
63         m17n-gui.h m17n-gui.c
64
65 OPTIONAL_LD_FLAGS = \
66         @FREETYPE_LD_FLAGS@ \
67         @FRIBIDI_LD_FLAGS@ \
68         @OTF_LD_FLAGS@ \
69         @FONTCONFIG_LD_FLAGS@
70
71 libm17n_gui_la_SOURCES = ${GUI_SOURCES}
72 libm17n_gui_la_LIBADD = ${OPTIONAL_LD_FLAGS} ${top_srcdir}/src/libm17n.la
73 libm17n_gui_la_LDFLAGS = -export-dynamic ${VINFO}
74
75 X_LD_FLAGS = ${X_PRE_LIBS} ${X_LIBS} -lXt -lX11 ${X_EXTRA_LIBS}
76
77 libm17n_X_la_SOURCES = m17n-X.h m17n-X.c
78 libm17n_X_la_LIBADD = ${X_LD_FLAGS} @XFT2_LD_FLAGS@ ${top_srcdir}/src/libm17n-gui.la
79 libm17n_X_la_LDFLAGS = -module ${VINFO}
80
81 libm17n_gd_la_SOURCES = m17n-gd.c
82 libm17n_gd_la_LIBADD = @GD_LD_FLAGS@ ${top_srcdir}/src/libm17n-gui.la
83 libm17n_gd_la_LDFLAGS = -module ${VINFO}
84
85 AM_CPPFLAGS = -DM17NDIR="\"@M17NDIR@\""
86
87
88 include_HEADERS = m17n-core.h m17n.h m17n-misc.h m17n-gui.h m17n-X.h
89
90 noinst_PROGRAMS = linkcore linkshell linkgui
91
92 linkcore_SOURCES = linkcore.c
93 linkcore_LDADD = ${top_srcdir}/src/libm17n-core.la
94 linkcore_LDFLAGS = -static
95
96 linkshell_SOURCES = linkshell.c
97 linkshell_LDADD = ${top_srcdir}/src/libm17n.la
98 linkshell_LDFLAGS = -static
99
100 linkgui_SOURCES = linkgui.c
101 linkgui_LDADD = ${top_srcdir}/src/libm17n-gui.la
102 linkgui_LDFLAGS = -static
103
104 SRC =   ${libm17n_core_la_SOURCES} \
105         ${libm17n_la_SOURCES} \
106         ${libm17n_gui_la_SOURCES} \
107         ${libm17n_X_la_SOURCES} \
108         ${libm17n_gd_la_SOURCES}
109
110 TAGS: ${SRC}
111         etags ${SRC}