File: Makefile.am

package info (click to toggle)
m17n-lib 1.8.6-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 5,352 kB
  • sloc: ansic: 52,372; sh: 5,973; makefile: 640; yacc: 291; xml: 148; sed: 16
file content (99 lines) | stat: -rw-r--r-- 3,526 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
# Makefile.am -- example level Makefile for the m17n library.
# Copyright (C) 2003, 2004, 2005, 2006, 2007, 2010, 2011, 2012
#   National Institute of Advanced Industrial Science and Technology (AIST)
#   Registration Number H15PRO112

# This file is part of the m17n library.

# The m17n library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public License
# as published by the Free Software Foundation; either version 2.1 of
# the License, or (at your option) any later version.

# The m17n library is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
# Lesser General Public License for more details.

# You should have received a copy of the GNU Lesser General Public
# License along with the m17n library; if not, write to the Free
# Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
# Boston, MA 02110-1301, USA.

## Process this file with Automake to create Makefile.in

## Note: Source files have preifx "m" but executables have prefix
## "m17n-" to avoid confliction of program names.

BASICPROGS = m17n-conv m17n-input-test
if WITH_GUI
bin_PROGRAMS = $(BASICPROGS) m17n-view m17n-date m17n-dump m17n-edit
else
bin_PROGRAMS = $(BASICPROGS)
endif

common_ldflags = ${top_builddir}/src/libm17n-core.la ${top_builddir}/src/libm17n.la
common_ldflags_gui = ${common_ldflags} ${top_builddir}/src/libm17n-flt.la ${top_builddir}/src/libm17n-gui.la
AM_CPPFLAGS=-I$(top_srcdir)/src @CONFIG_FLAGS@

m17n_date_SOURCES = mdate.c
m17n_date_LDADD = ${common_ldflags}

m17n_conv_SOURCES = mconv.c
m17n_conv_LDADD = ${common_ldflags}

X_LD_FLAGS = ${X_PRE_LIBS} ${X_LIBS} @XAW_LD_FLAGS@ @X11_LD_FLAGS@ ${X_EXTRA_LIBS}

m17n_edit_SOURCES = medit.c
m17n_edit_LDADD = ${X_LD_FLAGS} ${common_ldflags_gui} -ldl

m17n_view_SOURCES = mview.c
m17n_view_LDADD = ${X_LD_FLAGS} ${common_ldflags_gui}

m17n_dump_SOURCES = mdump.c
m17n_dump_LDADD = @GD_LD_FLAGS@ ${common_ldflags_gui}

m17n_input_test_SOURCES = minputtest.c
m17n_input_test_LDADD = ${common_ldflags}

# Input method data files.

pkgdatadir=$(datadir)/m17n

EXTRA_DIST = \
	.gdbinit .gdb.util \
	HELLO.utf8 HELLO.xml HELLO-ja.utf8 HELLO-ja.xml HELLO.html M17NEdit.ja

# External modules used by the above input methods.

moduledir = ${libdir}/@M17N_MODULE_DIR@

BASICBUILDS = libmimx-anthy.la
if WITH_GUI
BUILD_LIBS = $(BASICBUILDS) libmimx-ispell.la
else
BUILD_LIBS = $(BASICBUILDS)
endif
module_LTLIBRARIES = $(BUILD_LIBS)

libmimx_ispell_la_SOURCES = mimx-ispell.c
libmimx_ispell_la_LIBADD = ${common_ldflags_gui}
libmimx_ispell_la_LDFLAGS = -avoid-version -module
libmimx_anthy_la_SOURCES = mimx-anthy.c
libmimx_anthy_la_CFLAGS = @ANTHY_LD_CFLAGS@
libmimx_anthy_la_LIBADD = ${common_ldflags} @ANTHY_LD_FLAGS@
libmimx_anthy_la_LDFLAGS = -avoid-version -module

if MAINTAINER_MODE

# Special targets to test the m17n library with Purify.

PURIFY=/usr/local/rational/releases/purify.sol.2002.05.00/purify

purify_medit: medit ../src/.libs/libm17n-core.so ../src/.libs/libm17n.so ../src/.libs/libm17n-X.so linebreak.c
	${PURIFY} gcc -g medit.o linebreak.o -lXaw -lXmu -L/usr/X11R6/lib -R/usr/X11R6/lib -lSM -lICE -lX11 -lXt -L../src/.libs -lm17n-core -lm17n -lm17n-X -ldl

purify_mdate: mdate.o ../src/.libs/libm17n.so ../src/.libs/libm17n-X.so
	${PURIFY} gcc -g mdate.o -lXaw -lXmu -L/usr/X11R6/lib -R/usr/X11R6/lib -lSM -lICE -lX11 -lXt -L../src/.libs -lm17n -lm17n-X -ldl

endif