1 rizwank 1.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 program is free software; you can redistribute it and/or modify
10 # it under the terms of the GNU General Public License as published by
11 # the Free Software Foundation; either version 2, or (at your option)
12 # any later version.
13 #
14 # This program is distributed in the hope that it will be useful,
15 # but WITHOUT ANY WARRANTY; without even the implied warranty of
16 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 # GNU General Public License for more details.
18 #
19 # You should have received a copy of the GNU General Public License
20 #
21 # along with this program; see the file COPYING. If not, write to
22 rizwank 1.1 # the Free Software Foundation, 59 Temple Place - Suite 330,
23 # Boston, MA 02111-1307, USA.
24 #
25
26 ENCODINGS = e_88591.c e_88592.c e_88593.c e_88594.c e_88595.c \
27 e_88597.c e_88599.c e_885910.c e_pc.c e_mac.c e_vms.c e_hp8.c e_koi8.c
28
29 all: $(ENCODINGS)
30
31 clean:
32 rm -f $(ENCODINGS)
33
34 e_88591.c: make-encoding.pl ../88591.txt
35 ./make-encoding.pl ../88591.txt >e_88591.c
36
37 e_88592.c: make-encoding.pl ../88592.txt
38 ./make-encoding.pl ../88592.txt >e_88592.c
39
40 e_88593.c: make-encoding.pl ../88593.txt
41 ./make-encoding.pl ../88593.txt >e_88593.c
42
43 rizwank 1.1 e_88594.c: make-encoding.pl ../88594.txt
44 ./make-encoding.pl ../88594.txt >e_88594.c
45
46 e_88595.c: make-encoding.pl ../88595.txt
47 ./make-encoding.pl ../88595.txt >e_88595.c
48
49 e_88597.c: make-encoding.pl ../88597.txt
50 ./make-encoding.pl ../88597.txt >e_88597.c
51
52 e_88599.c: make-encoding.pl ../88599.txt
53 ./make-encoding.pl ../88599.txt >e_88599.c
54
55 e_885910.c: make-encoding.pl ../885910.txt
56 ./make-encoding.pl ../885910.txt >e_885910.c
57
58 e_pc.c: make-encoding.pl ../ibmpc.txt
59 ./make-encoding.pl ../ibmpc.txt >e_pc.c
60
61 e_mac.c: make-encoding.pl ../mac.txt
62 ./make-encoding.pl ../mac.txt >e_mac.c
63
64 rizwank 1.1 e_vms.c: make-encoding.pl ../vms.txt
65 ./make-encoding.pl ../vms.txt >e_vms.c
66
67 e_hp8.c: make-encoding.pl ../hp8.txt
68 ./make-encoding.pl ../hp8.txt >e_hp8.c
69
70 e_koi8.c: make-encoding.pl ../koi8.txt
71 ./make-encoding.pl ../koi8.txt >e_koi8.c
|