]> git.ipfire.org Git - thirdparty/cups.git/blob - data/Makefile
a05b55f5febd94851564597bc02af8c1a8b6f5ca
[thirdparty/cups.git] / data / Makefile
1 #
2 # "$Id: Makefile,v 1.20 2002/08/30 20:56:44 mike Exp $"
3 #
4 # Datafile makefile for the Common UNIX Printing System (CUPS).
5 #
6 # Copyright 1993-2002 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-3111 USA
19 #
20 # Voice: (301) 373-9603
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 = classified \
32 confidential \
33 secret \
34 standard \
35 topsecret \
36 unclassified
37
38 CHARSETS = windows-874 \
39 windows-1250 \
40 windows-1251 \
41 windows-1252 \
42 windows-1253 \
43 windows-1254 \
44 windows-1255 \
45 windows-1256 \
46 windows-1257 \
47 windows-1258 \
48 koi8-r \
49 koi8-u \
50 iso-8859-1 \
51 iso-8859-2 \
52 iso-8859-3 \
53 iso-8859-4 \
54 iso-8859-5 \
55 iso-8859-6 \
56 iso-8859-7 \
57 iso-8859-8 \
58 iso-8859-9 \
59 iso-8859-10 \
60 iso-8859-13 \
61 iso-8859-14 \
62 iso-8859-15 \
63 koi8-r \
64 koi8-u \
65 utf-8
66 DATAFILES = HPGLprolog psglyphs testprint.ps
67
68
69 #
70 # Make everything...
71 #
72
73 all:
74
75
76 #
77 # Clean all config and object files...
78 #
79
80 clean:
81
82
83 #
84 # Install files...
85 #
86
87 install:
88 $(INSTALL_DIR) $(DATADIR)/banners
89 for file in $(BANNERS); do \
90 $(INSTALL_DATA) $$file $(DATADIR)/banners; \
91 done
92 $(INSTALL_DIR) $(DATADIR)/charsets
93 for file in $(CHARSETS); do \
94 $(INSTALL_DATA) $$file $(DATADIR)/charsets; \
95 done
96 $(INSTALL_DIR) $(DATADIR)/data
97 for file in $(DATAFILES); do \
98 $(INSTALL_DATA) $$file $(DATADIR)/data; \
99 done
100
101
102 #
103 # End of "$Id: Makefile,v 1.20 2002/08/30 20:56:44 mike Exp $".
104 #