]> git.ipfire.org Git - thirdparty/cups.git/blob - data/Makefile
Load cups into easysw/current.
[thirdparty/cups.git] / data / Makefile
1 #
2 # "$Id: Makefile 5310 2006-03-19 03:23:34Z 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 iso-8859-10.txt \
45 iso-8859-11.txt \
46 iso-8859-13.txt \
47 iso-8859-14.txt \
48 iso-8859-15.txt \
49 iso-8859-16.txt \
50 iso-8859-1.txt \
51 iso-8859-2.txt \
52 iso-8859-3.txt \
53 iso-8859-4.txt \
54 iso-8859-5.txt \
55 iso-8859-6.txt \
56 iso-8859-7.txt \
57 iso-8859-8.txt \
58 iso-8859-9.txt \
59 koi8-r.txt \
60 koi8-u.txt \
61 mac-roman.txt \
62 windows-1250.txt \
63 windows-1251.txt \
64 windows-1252.txt \
65 windows-1253.txt \
66 windows-1254.txt \
67 windows-1255.txt \
68 windows-1256.txt \
69 windows-1257.txt \
70 windows-1258.txt \
71 windows-1361.txt \
72 windows-874.txt \
73 windows-932.txt \
74 windows-936.txt \
75 windows-949.txt \
76 windows-950.txt
77
78 CHARSETS = \
79 windows-874 \
80 windows-1250 \
81 windows-1251 \
82 windows-1252 \
83 windows-1253 \
84 windows-1254 \
85 windows-1255 \
86 windows-1256 \
87 windows-1257 \
88 windows-1258 \
89 koi8-r \
90 koi8-u \
91 iso-8859-1 \
92 iso-8859-2 \
93 iso-8859-3 \
94 iso-8859-4 \
95 iso-8859-5 \
96 iso-8859-6 \
97 iso-8859-7 \
98 iso-8859-8 \
99 iso-8859-9 \
100 iso-8859-10 \
101 iso-8859-13 \
102 iso-8859-14 \
103 iso-8859-15 \
104 utf-8
105
106 DATAFILES = \
107 HPGLprolog \
108 psglyphs \
109 testprint.ps
110
111
112 #
113 # Make everything...
114 #
115
116 all:
117
118
119 #
120 # Clean all config and object files...
121 #
122
123 clean:
124
125
126 #
127 # Dummy depend...
128 #
129
130 depend:
131
132
133 #
134 # Install files...
135 #
136
137 install: all
138 $(INSTALL_DIR) -m 755 $(DATADIR)/banners
139 for file in $(BANNERS); do \
140 $(INSTALL_DATA) $$file $(DATADIR)/banners; \
141 done
142 $(INSTALL_DIR) -m 755 $(DATADIR)/charmaps
143 for file in $(CHARMAPS); do \
144 $(INSTALL_DATA) $$file $(DATADIR)/charmaps; \
145 done
146 $(INSTALL_DIR) -m 755 $(DATADIR)/charsets
147 for file in $(CHARSETS); do \
148 $(INSTALL_DATA) $$file $(DATADIR)/charsets; \
149 done
150 $(INSTALL_DIR) -m 755 $(DATADIR)/data
151 for file in $(DATAFILES); do \
152 $(INSTALL_DATA) $$file $(DATADIR)/data; \
153 done
154 $(INSTALL_DIR) -m 755 $(DATADIR)/profiles
155
156
157 #
158 # Uninstall files...
159 #
160
161 uninstall:
162 for file in $(BANNERS); do \
163 $(RM) $(DATADIR)/banners/$$file; \
164 done
165 for file in $(CHARMAPS); do \
166 $(RM) $(DATADIR)/charmaps/$$file; \
167 done
168 for file in $(CHARSETS); do \
169 $(RM) $(DATADIR)/charsets/$$file; \
170 done
171 for file in $(DATAFILES); do \
172 $(RM) $(DATADIR)/data/$$file; \
173 done
174 -$(RMDIR) $(DATADIR)/profiles
175 -$(RMDIR) $(DATADIR)/data
176 -$(RMDIR) $(DATADIR)/charsets
177 -$(RMDIR) $(DATADIR)/charmaps
178 -$(RMDIR) $(DATADIR)/banners
179 -$(RMDIR) $(DATADIR)
180
181
182 #
183 # End of "$Id: Makefile 5310 2006-03-19 03:23:34Z mike $".
184 #