Makefile-encodings - enscript - GNU Enscript
 (HTM) git clone git://thinkerwim.org/enscript.git
 (DIR) Log
 (DIR) Files
 (DIR) Refs
 (DIR) README
 (DIR) LICENSE
       ---
       Makefile-encodings (2212B)
       ---
            1 #
            2 # Makefile to create the encoding vectors.
            3 # Copyright (c) 1995-1998 Markku Rossi
            4 #
            5 # Author: Markku Rossi <mtr@iki.fi>
            6 #
            7 
            8 #
            9 # This file is part of GNU Enscript.
           10 #
           11 # Enscript is free software: you can redistribute it and/or modify
           12 # it under the terms of the GNU General Public License as published by
           13 # the Free Software Foundation, either version 3 of the License, or
           14 # (at your option) any later version.
           15 #
           16 # Enscript is distributed in the hope that it will be useful,
           17 # but WITHOUT ANY WARRANTY; without even the implied warranty of
           18 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
           19 # GNU General Public License for more details.
           20 #
           21 # You should have received a copy of the GNU General Public License
           22 # along with Enscript.  If not, see <http://www.gnu.org/licenses/>.
           23 #
           24 
           25 ENCODINGS = ascii.enc asciifise.enc asciidkno.enc ibmpc.enc mac.enc \
           26 vms.enc hp8.enc koi8.enc 88591.enc 88592.enc 88593.enc 88594.enc \
           27 88595.enc 88597.enc 88599.enc 885910.enc 885915.enc
           28 
           29 all: $(ENCODINGS)
           30 
           31 ascii.enc: ../ascii.txt
           32         ./make-encoding.pl ../ascii.txt >ascii.enc
           33 
           34 asciifise.enc: ../asciifise.txt
           35         ./make-encoding.pl ../asciifise.txt >asciifise.enc
           36 
           37 asciidkno.enc: ../asciidkno.txt
           38         ./make-encoding.pl ../asciidkno.txt >asciidkno.enc
           39 
           40 ibmpc.enc: ../ibmpc.txt
           41         ./make-encoding.pl ../ibmpc.txt >ibmpc.enc
           42 
           43 88591.enc: ../88591.txt
           44         ./make-encoding.pl ../88591.txt >88591.enc
           45 
           46 88592.enc: ../88592.txt
           47         ./make-encoding.pl ../88592.txt >88592.enc
           48 
           49 88593.enc: ../88593.txt
           50         ./make-encoding.pl ../88593.txt >88593.enc
           51 
           52 88594.enc: ../88594.txt
           53         ./make-encoding.pl ../88594.txt >88594.enc
           54 
           55 88595.enc: ../88595.txt
           56         ./make-encoding.pl ../88595.txt >88595.enc
           57 
           58 88597.enc: ../88597.txt
           59         ./make-encoding.pl ../88597.txt >88597.enc
           60 
           61 88599.enc: ../88599.txt
           62         ./make-encoding.pl ../88599.txt >88599.enc
           63 
           64 885910.enc: ../885910.txt
           65         ./make-encoding.pl ../885910.txt >885910.enc
           66 
           67 885915.enc: ../885915.txt
           68         ./make-encoding.pl ../885915.txt >885915.enc
           69 
           70 mac.enc: ../mac.txt
           71         ./make-encoding.pl ../mac.txt >mac.enc
           72 
           73 vms.enc: ../vms.txt
           74         ./make-encoding.pl ../vms.txt >vms.enc
           75 
           76 hp8.enc: ../hp8.txt
           77         ./make-encoding.pl ../hp8.txt >hp8.enc
           78 
           79 koi8.enc: ../koi8.txt
           80         ./make-encoding.pl ../koi8.txt >koi8.enc
           81 
           82 clean:
           83         rm -f $(ENCODINGS)