~ubuntu-branches/ubuntu/trusty/skktools/trusty-proposed

« back to all changes in this revision

Viewing changes to Makefile.in

  • Committer: Bazaar Package Importer
  • Author(s): Takao KAWAMURA
  • Date: 2003-09-18 15:31:09 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20030918153109-9ubs3wtb5pxtv8us
Tags: 1.1-1
* New upstream release.
* Fixed the extended description. (Closes: Bug#209892)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
# SKK JISYO TOOLS (SKK dictionary handling tools)
2
 
# Copyright (C) 1994, 1996, 1999, 2000
 
2
# Copyright (C) 1994, 1996, 1999, 2000, 2002
3
3
#        Hironobu Takahashi, Masahiko Sato, Kiyotaka Sakai, Kenji Yabuuchi
4
4
#
5
5
# Author: Hironobu Takahashi, Masahiko Sato, Kiyotaka Sakai, Kenji Yabuuchi
6
 
# Maintainer: Mikio Nakajima <minakaji@osaka.email.ne.jp>
7
 
# Version: $Id: Makefile.in,v 1.7 2000/09/23 09:00:44 minakaji Exp $
 
6
# Maintainer: SKK Development Team <skk@ring.gr.jp>
 
7
# Version: $Id: Makefile.in,v 1.10 2003/08/17 08:32:15 minakaji Exp $
8
8
# Keywords: japanese
9
 
# Last Modified: $Date: 2000/09/23 09:00:44 $
 
9
# Last Modified: $Date: 2003/08/17 08:32:15 $
10
10
#
11
11
# This file is part of Daredevil SKK
12
 
 
12
#
13
13
# SKK JISYO TOOLS are free software; you can redistribute them and/or modify
14
14
# them under the terms of the GNU General Public License as published by
15
15
# the Free Software Foundation; either version 2, or (at your option)
16
16
# any later version.
17
 
 
17
#
18
18
# SKK JISYO TOOLS are distributed in the hope that they will be useful,
19
19
# but WITHOUT ANY WARRANTY; without even the implied warranty of
20
20
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
21
21
# GNU General Public License for more details.
22
 
 
22
#
23
23
# You should have received a copy of the GNU General Public License
24
24
# along with SKK; see the file COPYING.  If not, write to
25
 
# the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.  */
 
25
# the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
 
26
# MA 02111-1307, USA.
26
27
 
27
28
#### Start of system configuration section. ####
28
29
 
29
30
SHELL = /bin/sh
30
 
VERSION = 1.0
 
31
VERSION = 1.1
31
32
@SET_MAKE@
32
33
 
33
34
srcdir = @srcdir@
46
47
TAR = @TAR@
47
48
LDFLAGS = @LDFLAGS@
48
49
LIBS = @LIBS@
 
50
GLIB_CFLAGS = @GLIB2_CFLAGS@
 
51
GLIB_LIBS = @GLIB2_LIBS@
49
52
 
50
53
prefix = @prefix@
51
54
exec_prefix = @exec_prefix@
53
56
 
54
57
EXEEXT= @EXEEXT@
55
58
 
56
 
DEFS = -I$(srcdir) -I$(top_srcdir) $(CFLAGS)
 
59
DEFS = -I. -I$(srcdir) -I$(top_srcdir) $(CFLAGS)
57
60
 
58
61
SNAPBASE  = skktools-`$(DATE) '+%Y%m%d'`
59
 
TARGETS = skkdic-expr$(EXEEXT) skkdic-sort$(EXEEXT) skkdic-count$(EXEEXT)
60
 
SRCS = skkdic-expr.c skkdic-sort.c skkdic-count.c
 
62
TARGETS = skkdic-expr$(EXEEXT) skkdic-sort$(EXEEXT) skkdic-count$(EXEEXT) @SKKDIC_EXPR2@
 
63
SRCS = skkdic-expr.c skkdic-sort.c skkdic-count.c skkdic-expr2.c
61
64
 
62
65
all: $(TARGETS)
63
66
 
64
 
skkdic-expr$(EXEEXT): skkdic-expr.c
65
 
        $(CC) $(DEFS) -o $@ skkdic-expr.c $(LIBS)
66
 
 
67
 
skkdic-sort$(EXEEXT): skkdic-sort.c
68
 
        $(CC) $(DEFS) -o $@ skkdic-sort.c
69
 
 
70
 
skkdic-count$(EXEEXT): skkdic-count.c
71
 
        $(CC) $(DEFS) -o $@ skkdic-count.c
 
67
skkdic-expr$(EXEEXT): $(srcdir)/skkdic-expr.c
 
68
        $(CC) $(DEFS) -o $@ $(srcdir)/skkdic-expr.c $(LIBS)
 
69
 
 
70
skkdic-sort$(EXEEXT): $(srcdir)/skkdic-sort.c
 
71
        $(CC) $(DEFS) -o $@ $(srcdir)/skkdic-sort.c
 
72
 
 
73
skkdic-count$(EXEEXT): $(srcdir)/skkdic-count.c
 
74
        $(CC) $(DEFS) -o $@ $(srcdir)/skkdic-count.c
 
75
 
 
76
skkdic-expr2$(EXEEXT): $(srcdir)/skkdic-expr2.c
 
77
        $(CC) $(DEFS) $(GLIB_CFLAGS) -o $@ $(srcdir)/skkdic-expr2.c $(GLIB_LIBS) $(LDFLAGS)
72
78
 
73
79
${srcdir}/configure: configure.in #aclocal.m4
74
80
        cd ${srcdir} && autoconf
144
150
        $(MD5) $(SNAPBASE).tar.gz >$(SNAPBASE).tar.gz.md5
145
151
 
146
152
 
147
 
.PHONY: clean distclean 
 
153
.PHONY: clean distclean