]> git.ipfire.org Git - thirdparty/cups.git/blob - data/Makefile
Load cups into easysw/current.
[thirdparty/cups.git] / data / Makefile
1 #
2 # "$Id: Makefile 5229 2006-03-05 16:48:12Z mike $"
3 #
4 # Datafile makefile for the Common UNIX Printing System (CUPS).
5 #
6 # Copyright 1993-2006 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
25 include ../Makedefs
26
27 #
28 # Data files...
29 #
30
31 BANNERS = \
32 classified \
33 confidential \
34 secret \
35 standard \
36 topsecret \
37 unclassified
38
39 CHARMAPS = \
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 mac-roman.txt \
63 unibreak.txt \
64 uni-comb.txt \
65 uni-fold.txt \
66 uni-full.txt \
67 uni-line.txt \
68 uni-nfc.txt \
69 uni-nfd.txt \
70 uni-nfkd.txt \
71 uni-prop.txt \
72 windows-1250.txt \
73 windows-1251.txt \
74 windows-1252.txt \
75 windows-1253.txt \
76 windows-1254.txt \
77 windows-1255.txt \
78 windows-1256.txt \
79 windows-1257.txt \
80 windows-1258.txt \
81 windows-1361.txt \
82 windows-874.txt \
83 windows-932.txt \
84 windows-936.txt \
85 windows-949.txt \
86 windows-950.txt
87
88 CHARSETS = \
89 windows-874 \
90 windows-1250 \
91 windows-1251 \
92 windows-1252 \
93 windows-1253 \
94 windows-1254 \
95 windows-1255 \
96 windows-1256 \
97 windows-1257 \
98 windows-1258 \
99 koi8-r \
100 koi8-u \
101 iso-8859-1 \
102 iso-8859-2 \
103 iso-8859-3 \
104 iso-8859-4 \
105 iso-8859-5 \
106 iso-8859-6 \
107 iso-8859-7 \
108 iso-8859-8 \
109 iso-8859-9 \
110 iso-8859-10 \
111 iso-8859-13 \
112 iso-8859-14 \
113 iso-8859-15 \
114 utf-8
115
116 DATAFILES = \
117 HPGLprolog \
118 psglyphs \
119 testprint.ps
120
121
122 #
123 # Make everything...
124 #
125
126 all:
127
128
129 #
130 # Clean all config and object files...
131 #
132
133 clean:
134
135
136 #
137 # Dummy depend...
138 #
139
140 depend:
141
142
143 #
144 # Install files...
145 #
146
147 install: all
148 $(INSTALL_DIR) -m 755 $(DATADIR)/banners
149 for file in $(BANNERS); do \
150 $(INSTALL_DATA) $$file $(DATADIR)/banners; \
151 done
152 $(INSTALL_DIR) -m 755 $(DATADIR)/charmaps
153 for file in $(CHARMAPS); do \
154 $(INSTALL_DATA) $$file $(DATADIR)/charmaps; \
155 done
156 $(INSTALL_DIR) -m 755 $(DATADIR)/charsets
157 for file in $(CHARSETS); do \
158 $(INSTALL_DATA) $$file $(DATADIR)/charsets; \
159 done
160 $(INSTALL_DIR) -m 755 $(DATADIR)/data
161 for file in $(DATAFILES); do \
162 $(INSTALL_DATA) $$file $(DATADIR)/data; \
163 done
164 $(INSTALL_DIR) -m 755 $(DATADIR)/profiles
165
166
167 #
168 # Uninstall files...
169 #
170
171 uninstall:
172 for file in $(BANNERS); do \
173 $(RM) $(DATADIR)/banners/$$file; \
174 done
175 for file in $(CHARMAPS); do \
176 $(RM) $(DATADIR)/charmaps/$$file; \
177 done
178 for file in $(CHARSETS); do \
179 $(RM) $(DATADIR)/charsets/$$file; \
180 done
181 for file in $(DATAFILES); do \
182 $(RM) $(DATADIR)/data/$$file; \
183 done
184 -$(RMDIR) $(DATADIR)/profiles
185 -$(RMDIR) $(DATADIR)/data
186 -$(RMDIR) $(DATADIR)/charsets
187 -$(RMDIR) $(DATADIR)/charmaps
188 -$(RMDIR) $(DATADIR)/banners
189 -$(RMDIR) $(DATADIR)
190
191
192 #
193 # End of "$Id: Makefile 5229 2006-03-05 16:48:12Z mike $".
194 #