]> git.ipfire.org Git - thirdparty/cups.git/blob - data/Makefile
9b4b1e4b30c54c59b65f390d074308de35eae6d6
[thirdparty/cups.git] / data / Makefile
1 #
2 # "$Id: Makefile,v 1.12 2001/01/22 15:03:32 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 -$(MKDIR) $(DATADIR)/banners
85 $(CHMOD) ugo+rx $(DATADIR)
86 $(CHMOD) ugo+rx $(DATADIR)/banners
87 $(INSTALL_DATA) $(BANNERS) $(DATADIR)/banners
88 -$(MKDIR) $(DATADIR)/charsets
89 $(CHMOD) ugo+rx $(DATADIR)/charsets
90 $(INSTALL_DATA) $(CHARSETS) $(DATADIR)/charsets
91 -$(MKDIR) $(DATADIR)/data
92 $(CHMOD) ugo+rx $(DATADIR)/data
93 $(INSTALL_DATA) $(DATAFILES) $(DATADIR)/data
94 -if test "$(PAMDIR)" != ""; then \
95 $(MKDIR) $(PAMDIR); \
96 $(CHMOD) ugo+rx $(PAMDIR); \
97 if test -f /lib/security/pam_unix.so; then \
98 $(INSTALL_DATA) cups.suse $(PAMDIR)/cups; \
99 else \
100 $(INSTALL_DATA) cups.pam $(PAMDIR)/cups; \
101 fi \
102 fi
103
104
105 #
106 # End of "$Id: Makefile,v 1.12 2001/01/22 15:03:32 mike Exp $".
107 #