~ubuntu-branches/ubuntu/precise/vflib3/precise

« back to all changes in this revision

Viewing changes to ascii-jtex/eKanji/Makefile

  • Committer: Bazaar Package Importer
  • Author(s): Masayuki Hatta
  • Date: 2002-04-15 12:10:24 UTC
  • Revision ID: james.westby@ubuntu.com-20020415121024-cann32wucyfbq22f
Tags: upstream-3.6.12
ImportĀ upstreamĀ versionĀ 3.6.12

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
PLATEX=platex
 
2
 
 
3
 
 
4
ALL: 
 
5
        @echo '** '
 
6
        @echo '** make tfm       - to make tfm files for eKanji fonts'
 
7
        @echo '** make samples   - to make character lists of eKanji fonts'
 
8
        @echo '** '
 
9
 
 
10
tfm:
 
11
        cd tfm; ./mktfm
 
12
 
 
13
default all: $(ALL)
 
14
 
 
15
 
 
16
distclean: clean
 
17
        -rm -f *~ core *.core a.out 
 
18
        -rm -f sample-u.* sample-k.* sample-m.*
 
19
clean:
 
20
        -rm -f *.aux *.log 
 
21
realclean: distclean
 
22
        -rm -f *.tfm 
 
23
 
 
24
samples:
 
25
        gcc mksample.c
 
26
        ./a.out -u >sample-u.tex
 
27
        ./a.out -k >sample-k.tex
 
28
        ./a.out -m >sample-m.tex
 
29
        $(PLATEX) sample-u.tex
 
30
        $(PLATEX) sample-k.tex
 
31
        $(PLATEX) sample-m.tex
 
32
        -rm -f a.out *.log *.aux