(VINFO): New variable.
[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_LDFLAGS = @XML2_LD_FLAGS@ ${VINFO}
43
44 libm17n_la_SOURCES = \
45         charset.h charset.c \
46         coding.h coding.c \
47         database.h database.c \
48         input.h input.c \
49         language.h language.c \
50         mlocale.h locale.c \
51         m17n.h m17n.c
52 libm17n_la_LIBADD = libm17n-core.la -ldl
53 libm17n_la_LDFLAGS = ${VINFO}
54
55 GUI_SOURCES = \
56         face.h face.c \
57         font.h font.c font-ft.c font-flt.c \
58         fontset.h fontset.c \
59         draw.c \
60         input-gui.c \
61         internal-gui.h \
62         m17n-gui.h m17n-gui.c
63
64 X_LD_FLAGS = ${X_PRE_LIBS} ${X_LIBS} -lX11 -lXt ${X_EXTRA_LIBS}
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 = libm17n.la
73 libm17n_gui_la_LDFLAGS = ${X_LD_FLAGS} ${OPTIONAL_LD_FLAGS} ${VINFO}
74
75 libm17n_X_la_SOURCES = m17n-X.h m17n-X.c
76 libm17n_X_la_LIBADD = libm17n-gui.la
77 libm17n_X_la_LDFLAGS = -module ${X_LD_FLAGS} @XFT2_LD_FLAGS@ ${VINFO}
78
79 libm17n_gd_la_SOURCES = m17n-gd.c
80 libm17n_gd_la_LIBADD = libm17n-gui.la
81 libm17n_gd_la_LDFLAGS = -module @GD_LD_FLAGS@ ${VINFO}
82
83 AM_CPPFLAGS = -DM17NDIR="\"$(datadir)/m17n\""
84
85
86 include_HEADERS = m17n-core.h m17n.h m17n-misc.h m17n-gui.h m17n-X.h
87
88 noinst_PROGRAMS = linkcore linkshell linkgui
89
90 linkcore_SOURCES = linkcore.c
91 linkcore_LDADD = libm17n-core.la
92 linkcore_LDFLAGS = -static
93
94 linkshell_SOURCES = linkshell.c
95 linkshell_LDADD = libm17n.la
96 linkshell_LDFLAGS = -static
97
98 linkgui_SOURCES = linkgui.c
99 linkgui_LDADD = libm17n-gui.la
100 linkgui_LDFLAGS = -static
101
102 SRC =   ${libm17n_core_la_SOURCES} \
103         ${libm17n_la_SOURCES} \
104         ${libm17n_gui_la_SOURCES} \
105         ${libm17n_X_la_SOURCES} \
106         ${libm17n_gd_la_SOURCES}
107
108 TAGS: ${SRC}
109         etags ${SRC}