]> git.ipfire.org Git - thirdparty/cups.git/blob - data/Makefile
Merge CUPS 1.4svn-r7319.
[thirdparty/cups.git] / data / Makefile
1 #
2 # "$Id: Makefile 7014 2007-10-10 21:57:43Z mike $"
3 #
4 # Datafile makefile for the Common UNIX Printing System (CUPS).
5 #
6 # Copyright 2007-2008 by Apple Inc.
7 # Copyright 1993-2006 by Easy Software Products.
8 #
9 # These coded instructions, statements, and computer programs are the
10 # property of Apple Inc. and are protected by Federal copyright
11 # law. Distribution and use rights are outlined in the file "LICENSE.txt"
12 # which should have been included with this file. If this file is
13 # file is missing or damaged, see the license at "http://www.cups.org/".
14 #
15
16 include ../Makedefs
17
18 #
19 # Data files...
20 #
21
22 BANNERS = \
23 classified \
24 confidential \
25 secret \
26 standard \
27 topsecret \
28 unclassified
29
30 CHARMAPS = \
31 euc-cn.txt \
32 euc-jp.txt \
33 euc-kr.txt \
34 euc-tw.txt \
35 iso-8859-10.txt \
36 iso-8859-11.txt \
37 iso-8859-13.txt \
38 iso-8859-14.txt \
39 iso-8859-15.txt \
40 iso-8859-16.txt \
41 iso-8859-1.txt \
42 iso-8859-2.txt \
43 iso-8859-3.txt \
44 iso-8859-4.txt \
45 iso-8859-5.txt \
46 iso-8859-6.txt \
47 iso-8859-7.txt \
48 iso-8859-8.txt \
49 iso-8859-9.txt \
50 koi8-r.txt \
51 koi8-u.txt \
52 mac-roman.txt \
53 windows-1250.txt \
54 windows-1251.txt \
55 windows-1252.txt \
56 windows-1253.txt \
57 windows-1254.txt \
58 windows-1255.txt \
59 windows-1256.txt \
60 windows-1257.txt \
61 windows-1258.txt \
62 windows-1361.txt \
63 windows-874.txt \
64 windows-932.txt \
65 windows-936.txt \
66 windows-949.txt \
67 windows-950.txt
68
69 CHARSETS = \
70 utf-8
71
72 DATAFILES = \
73 HPGLprolog \
74 psglyphs \
75 testprint.ps
76
77 PPDCFILES = \
78 epson.h \
79 escp.h \
80 font.defs \
81 hp.h \
82 label.h \
83 media.defs \
84 pcl.h \
85 raster.defs
86
87
88 #
89 # Make everything...
90 #
91
92 all:
93
94
95 #
96 # Clean all config and object files...
97 #
98
99 clean:
100
101
102 #
103 # Dummy depend...
104 #
105
106 depend:
107
108
109 #
110 # Install files...
111 #
112
113 install: all
114 $(INSTALL_DIR) -m 755 $(DATADIR)/banners
115 for file in $(BANNERS); do \
116 $(INSTALL_DATA) $$file $(DATADIR)/banners; \
117 done
118 $(INSTALL_DIR) -m 755 $(DATADIR)/charmaps
119 for file in $(CHARMAPS); do \
120 $(INSTALL_DATA) $$file $(DATADIR)/charmaps; \
121 done
122 $(INSTALL_DIR) -m 755 $(DATADIR)/charsets
123 for file in $(CHARSETS); do \
124 $(INSTALL_DATA) $$file $(DATADIR)/charsets; \
125 done
126 $(INSTALL_DIR) -m 755 $(DATADIR)/data
127 for file in $(DATAFILES); do \
128 $(INSTALL_DATA) $$file $(DATADIR)/data; \
129 done
130 $(INSTALL_DIR) -m 755 $(DATADIR)/ppdc
131 for file in $(PPDCFILES); do \
132 $(INSTALL_DATA) $$file $(DATADIR)/ppdc; \
133 done
134 $(INSTALL_DIR) -m 755 $(DATADIR)/profiles
135
136
137 #
138 # Uninstall files...
139 #
140
141 uninstall:
142 for file in $(BANNERS); do \
143 $(RM) $(DATADIR)/banners/$$file; \
144 done
145 for file in $(CHARMAPS); do \
146 $(RM) $(DATADIR)/charmaps/$$file; \
147 done
148 for file in $(CHARSETS); do \
149 $(RM) $(DATADIR)/charsets/$$file; \
150 done
151 for file in $(DATAFILES); do \
152 $(RM) $(DATADIR)/data/$$file; \
153 done
154 for file in $(PPDCFILES); do \
155 $(RM) $(DATADIR)/ppdc/$$file; \
156 done
157 -$(RMDIR) $(DATADIR)/profiles
158 -$(RMDIR) $(DATADIR)/ppdc
159 -$(RMDIR) $(DATADIR)/data
160 -$(RMDIR) $(DATADIR)/charsets
161 -$(RMDIR) $(DATADIR)/charmaps
162 -$(RMDIR) $(DATADIR)/banners
163 -$(RMDIR) $(DATADIR)
164
165
166 #
167 # End of "$Id: Makefile 7014 2007-10-10 21:57:43Z mike $".
168 #