]> git.ipfire.org Git - thirdparty/cups.git/blame - data/Makefile
Load cups into easysw/current.
[thirdparty/cups.git] / data / Makefile
CommitLineData
ef416fc2 1#
2# "$Id: Makefile 4494 2005-02-18 02:18:11Z mike $"
3#
4# Datafile makefile for the Common UNIX Printing System (CUPS).
5#
6# Copyright 1993-2005 by Easy Software Products.
7#
8# These coded instructions, statements, and computer programs are the
9# property of Easy Software Products and are protected by Federal
10# copyright law. Distribution and use rights are outlined in the file
11# "LICENSE.txt" which should have been included with this file. If this
12# file is missing or damaged please contact Easy Software Products
13# at:
14#
15# Attn: CUPS Licensing Information
16# Easy Software Products
17# 44141 Airport View Drive, Suite 204
18# Hollywood, Maryland 20636 USA
19#
20# Voice: (301) 373-9600
21# EMail: cups-info@cups.org
22# WWW: http://www.cups.org
23#
24
25include ../Makedefs
26
27#
28# Data files...
29#
30
31BANNERS = \
32 classified \
33 confidential \
34 secret \
35 standard \
36 topsecret \
37 unclassified
38
39CHARMAPS = \
40 euc-cn.txt \
41 euc-jp.txt \
42 euc-kr.txt \
43 euc-tw.txt \
44 i18n_sdd.txt \
45 iso-8859-10.txt \
46 iso-8859-11.txt \
47 iso-8859-13.txt \
48 iso-8859-14.txt \
49 iso-8859-15.txt \
50 iso-8859-16.txt \
51 iso-8859-1.txt \
52 iso-8859-2.txt \
53 iso-8859-3.txt \
54 iso-8859-4.txt \
55 iso-8859-5.txt \
56 iso-8859-6.txt \
57 iso-8859-7.txt \
58 iso-8859-8.txt \
59 iso-8859-9.txt \
60 koi8-r.txt \
61 koi8-u.txt \
62 unibreak.txt \
63 uni-comb.txt \
64 uni-fold.txt \
65 uni-full.txt \
66 uni-line.txt \
67 uni-nfc.txt \
68 uni-nfd.txt \
69 uni-nfkd.txt \
70 uni-prop.txt \
71 windows-1250.txt \
72 windows-1251.txt \
73 windows-1252.txt \
74 windows-1253.txt \
75 windows-1254.txt \
76 windows-1255.txt \
77 windows-1256.txt \
78 windows-1257.txt \
79 windows-1258.txt \
80 windows-1361.txt \
81 windows-874.txt \
82 windows-932.txt \
83 windows-936.txt \
84 windows-949.txt \
85 windows-950.txt
86
87CHARSETS = \
88 windows-874 \
89 windows-1250 \
90 windows-1251 \
91 windows-1252 \
92 windows-1253 \
93 windows-1254 \
94 windows-1255 \
95 windows-1256 \
96 windows-1257 \
97 windows-1258 \
98 koi8-r \
99 koi8-u \
100 iso-8859-1 \
101 iso-8859-2 \
102 iso-8859-3 \
103 iso-8859-4 \
104 iso-8859-5 \
105 iso-8859-6 \
106 iso-8859-7 \
107 iso-8859-8 \
108 iso-8859-9 \
109 iso-8859-10 \
110 iso-8859-13 \
111 iso-8859-14 \
112 iso-8859-15 \
113 utf-8
114
115DATAFILES = \
116 HPGLprolog \
117 psglyphs \
118 testprint.ps
119
120
121#
122# Make everything...
123#
124
125all:
126
127
128#
129# Clean all config and object files...
130#
131
132clean:
133
134
135#
136# Install files...
137#
138
139install:
140 $(INSTALL_DIR) $(DATADIR)/banners
141 for file in $(BANNERS); do \
142 $(INSTALL_DATA) $$file $(DATADIR)/banners; \
143 done
144 $(INSTALL_DIR) $(DATADIR)/charmaps
145 for file in $(CHARMAPS); do \
146 $(INSTALL_DATA) $$file $(DATADIR)/charmaps; \
147 done
148 $(INSTALL_DIR) $(DATADIR)/charsets
149 for file in $(CHARSETS); do \
150 $(INSTALL_DATA) $$file $(DATADIR)/charsets; \
151 done
152 $(INSTALL_DIR) $(DATADIR)/data
153 for file in $(DATAFILES); do \
154 $(INSTALL_DATA) $$file $(DATADIR)/data; \
155 done
156
157
158#
159# End of "$Id: Makefile 4494 2005-02-18 02:18:11Z mike $".
160#