~ubuntu-branches/ubuntu/wily/kakasi/wily

« back to all changes in this revision

Viewing changes to src/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Keita Maehara
  • Date: 2001-12-25 23:18:48 UTC
  • Revision ID: james.westby@ubuntu.com-20011225231848-oiu2kbbhoq80w774
Tags: upstream-2.3.4
ImportĀ upstreamĀ versionĀ 2.3.4

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
## Process this file with automake to produce Makefile.in
 
2
 
 
3
AUTOMAKE_OPTIONS = 1.4 no-dependencies
 
4
 
 
5
bin_PROGRAMS = kakasi mkkanwa atoc_conv rdic_conv wx2_conv
 
6
 
 
7
kakasi_SOURCES= kakasi.c a2.c g2.c j2.c k2.c ee2.c hh2.c jj2.c kk2.c \
 
8
        dict.c itaiji.c kanjiio.c 78_83.c
 
9
mkkanwa_SOURCES = mkkanwa.c dict.c itaiji.c getopt.c getopt1.c
 
10
atoc_conv_SOURCES = atoc-conv.c conv-util.c
 
11
rdic_conv_SOURCES = rdic-conv.c conv-util.c
 
12
wx2_conv_SOURCES = wx2-conv.c conv-util.c
 
13
 
 
14
noinst_HEADERS = conv-util.h kakasi.h getopt.h
 
15
 
 
16
dictdir = $(pkgdatadir)
 
17
DEFS = -DHAVE_CONFIG_H \
 
18
       -DKANWADICT=\"$(dictdir)/kanwadict\" \
 
19
       -DITAIJIDICT=\"$(dictdir)/itaijidict\"
 
20
INCLUDES = -I..
 
21