]> git.ipfire.org Git - thirdparty/cups.git/blob - conf/Makefile
Merge changes from CUPS trunk, r7566.
[thirdparty/cups.git] / conf / Makefile
1 #
2 # "$Id: Makefile 6649 2007-07-11 21:46:42Z mike $"
3 #
4 # Configuration file 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 # Config files...
20 #
21
22 KEEP = cupsd.conf snmp.conf
23 REPLACE = mime.convs mime.types
24
25
26 #
27 # Make everything...
28 #
29
30 all:
31
32
33 #
34 # Make library targets...
35 #
36
37 libs:
38
39
40 #
41 # Clean all config and object files...
42 #
43
44 clean:
45
46
47 #
48 # Dummy depend...
49 #
50
51 depend:
52
53
54 #
55 # Install all targets...
56 #
57
58 install: all install-data install-headers install-libs install-exec
59
60
61 #
62 # Install data files...
63 #
64
65 install-data:
66 $(INSTALL_DIR) -m 755 $(SERVERROOT)
67 for file in $(KEEP); do \
68 if test -r $(SERVERROOT)/$$file ; then \
69 $(INSTALL_CONFIG) $$file $(SERVERROOT)/$$file.N ; \
70 chgrp $(CUPS_GROUP) $(SERVERROOT)/$$file.N || true; \
71 else \
72 $(INSTALL_CONFIG) $$file $(SERVERROOT) ; \
73 chgrp $(CUPS_GROUP) $(SERVERROOT)/$$file || true; \
74 fi ; \
75 done
76 $(INSTALL_CONFIG) cupsd.conf $(SERVERROOT)/cupsd.conf.default
77 -chgrp $(CUPS_GROUP) $(SERVERROOT)/cupsd.conf.default
78 for file in $(REPLACE); do \
79 if test -r $(SERVERROOT)/$$file ; then \
80 $(MV) $(SERVERROOT)/$$file $(SERVERROOT)/$$file.O ; \
81 fi ; \
82 $(INSTALL_DATA) $$file $(SERVERROOT) ; \
83 done
84 -if test x$(PAMDIR) != x; then \
85 $(INSTALL_DIR) -m 755 $(BUILDROOT)$(PAMDIR); \
86 if test -r $(BUILDROOT)$(PAMDIR)/cups/$(PAMFILE) ; then \
87 $(INSTALL_DATA) $(PAMFILE) $(BUILDROOT)$(PAMDIR)/cups.N ; \
88 else \
89 $(INSTALL_DATA) $(PAMFILE) $(BUILDROOT)$(PAMDIR)/cups ; \
90 fi ; \
91 fi
92
93
94 #
95 # Install programs...
96 #
97
98 install-exec:
99
100
101 #
102 # Install headers...
103 #
104
105 install-headers:
106
107
108 #
109 # Install libraries...
110 #
111
112 install-libs:
113
114
115 #
116 # Uninstall files...
117 #
118
119 uninstall:
120 for file in $(KEEP) $(REPLACE) cupsd.conf.default; do \
121 $(RM) $(SERVERROOT)/$$file; \
122 done
123 -$(RMDIR) $(SERVERROOT)
124 -if test x$(PAMDIR) != x; then \
125 $(RM) $(BUILDROOT)$(PAMDIR)/cups; \
126 $(RMDIR) $(BUILDROOT)$(PAMDIR); \
127 fi
128
129
130 #
131 # End of "$Id: Makefile 6649 2007-07-11 21:46:42Z mike $".
132 #