]> git.ipfire.org Git - thirdparty/cups.git/blob - data/Makefile
Merge changes from 1.1.x into 1.2 devel.
[thirdparty/cups.git] / data / Makefile
1 #
2 # "$Id: Makefile,v 1.12.2.1 2001/12/26 16:52:14 mike Exp $"
3 #
4 # Datafile makefile for the Common UNIX Printing System (CUPS).
5 #
6 # Copyright 1993-2001 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 iso-8859-1 \
49 iso-8859-2 \
50 iso-8859-3 \
51 iso-8859-4 \
52 iso-8859-5 \
53 iso-8859-6 \
54 iso-8859-7 \
55 iso-8859-8 \
56 iso-8859-9 \
57 iso-8859-10 \
58 iso-8859-13 \
59 iso-8859-14 \
60 iso-8859-15 \
61 utf-8
62 DATAFILES = HPGLprolog psglyphs testprint.ps
63
64
65 #
66 # Make everything...
67 #
68
69 all:
70
71
72 #
73 # Clean all config and object files...
74 #
75
76 clean:
77
78
79 #
80 # Install files...
81 #
82
83 install:
84 $(INSTALL_DIR) $(DATADIR)/banners
85 for file in $(BANNERS); do \
86 $(INSTALL_DATA) $$file $(DATADIR)/banners; \
87 done
88 $(INSTALL_DIR) $(DATADIR)/charsets
89 for file in $(CHARSETS); do \
90 $(INSTALL_DATA) $$file $(DATADIR)/charsets; \
91 done
92 $(INSTALL_DIR) $(DATADIR)/data
93 for file in $(DATAFILES); do \
94 $(INSTALL_DATA) $$file $(DATADIR)/data; \
95 done
96 -if test x$(PAMDIR) != x; then \
97 $(INSTALL_DIR) $(PAMDIR); \
98 if test -f /lib/security/pam_unix.so; then \
99 $(INSTALL_DATA) cups.suse $(PAMDIR)/cups; \
100 else \
101 $(INSTALL_DATA) cups.pam $(PAMDIR)/cups; \
102 fi \
103 fi
104
105
106 #
107 # End of "$Id: Makefile,v 1.12.2.1 2001/12/26 16:52:14 mike Exp $".
108 #