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

« back to all changes in this revision

Viewing changes to convert2skk/obsolete/Makefile

  • Committer: Bazaar Package Importer
  • Author(s): Tatsuya Kinoshita
  • Date: 2006-10-05 20:44:11 UTC
  • mfrom: (1.2.1 upstream) (3.1.1 edgy)
  • Revision ID: james.westby@ubuntu.com-20061005204411-25mr105z6mhhvrtv
Tags: 1.2+0.20061004-1
* New upstream release. (CVS trunk on 2006-10-04)
* debian/rules: Use "nkf -e" instead of "qkc" for `doc2skk.sh'.
* debian/skkdic-sort.1: Typo fix.
* debian/skk2cdb: Put $OUTFILE in double quotes.
* debian/control (Suggests): Add required packages for `doc2skk.sh',
  `chasen, mecab, kakasi, nkf, w3m'.
* debian/control (Description): Revised.
* debian/copyright: Updated.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
PERL = /afs/cs/project/cmt/bin/perl
 
2
 
 
3
FILES = Makefile README \
 
4
        codeconv.pl roma2kana.pl kana2roma.pl \
 
5
        convprog.t \
 
6
        skk2list.t pubdic2list.t list2skk.t \
 
7
        adddummy.t removedummy.t \
 
8
        skkconv.t sub.t
 
9
LIBS = codeconv.pl roma2kana.pl kana2roma.pl
 
10
SKKPROGS = skk2list pubdic2list list2skk adddummy removedummy sub skkconv
 
11
CONVPROGS = sjis2jis jis2sjis ujis2jis jis2ujis roma2kana kana2roma
 
12
PROGS = $(SKKPROGS) $(CONVPROGS)
 
13
CONVPROG = convprog
 
14
 
 
15
all: $(PROGS)
 
16
        chmod +x $(PROGS)
 
17
        /bin/rm -f $(CONVPROG)
 
18
$(SKKPROGS):
 
19
        sed -e 's#PERLPATH#$(PERL)#' < $@.t > $@
 
20
$(CONVPROGS): $(CONVPROG)
 
21
        ln $(CONVPROG) $@
 
22
$(CONVPROG):
 
23
        sed -e 's#PERLPATH#$(PERL)#' < $@.t > $@
 
24
 
 
25
clean:
 
26
        /bin/rm -f $(PROGS)
 
27
 
 
28
DIST = skktools.tar
 
29
tar:
 
30
        tar cvf $(DIST) $(FILES)