]> git.ipfire.org Git - thirdparty/cups.git/blob - conf/Makefile
<rdar://problem/5792631> dependency cycle in cups-144 / PrintingCore-250 / Applicatio...
[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 # Clean all config and object files...
35 #
36
37 clean:
38
39
40 #
41 # Dummy depend...
42 #
43
44 depend:
45
46
47 #
48 # Install all targets...
49 #
50
51 install: all install-data install-headers install-libs install-exec
52
53
54 #
55 # Install data files...
56 #
57
58 install-data:
59 $(INSTALL_DIR) -m 755 $(SERVERROOT)
60 for file in $(KEEP); do \
61 if test -r $(SERVERROOT)/$$file ; then \
62 $(INSTALL_CONFIG) $$file $(SERVERROOT)/$$file.N ; \
63 chgrp $(CUPS_GROUP) $(SERVERROOT)/$$file.N || true; \
64 else \
65 $(INSTALL_CONFIG) $$file $(SERVERROOT) ; \
66 chgrp $(CUPS_GROUP) $(SERVERROOT)/$$file || true; \
67 fi ; \
68 done
69 $(INSTALL_CONFIG) cupsd.conf $(SERVERROOT)/cupsd.conf.default
70 -chgrp $(CUPS_GROUP) $(SERVERROOT)/cupsd.conf.default
71 for file in $(REPLACE); do \
72 if test -r $(SERVERROOT)/$$file ; then \
73 $(MV) $(SERVERROOT)/$$file $(SERVERROOT)/$$file.O ; \
74 fi ; \
75 $(INSTALL_DATA) $$file $(SERVERROOT) ; \
76 done
77 -if test x$(PAMDIR) != x; then \
78 $(INSTALL_DIR) -m 755 $(BUILDROOT)$(PAMDIR); \
79 if test -r $(BUILDROOT)$(PAMDIR)/cups/$(PAMFILE) ; then \
80 $(INSTALL_DATA) $(PAMFILE) $(BUILDROOT)$(PAMDIR)/cups.N ; \
81 else \
82 $(INSTALL_DATA) $(PAMFILE) $(BUILDROOT)$(PAMDIR)/cups ; \
83 fi ; \
84 fi
85
86
87 #
88 # Install programs...
89 #
90
91 install-exec:
92
93
94 #
95 # Install headers...
96 #
97
98 install-headers:
99
100
101 #
102 # Install libraries...
103 #
104
105 install-libs:
106
107
108 #
109 # Uninstall files...
110 #
111
112 uninstall:
113 for file in $(KEEP) $(REPLACE) cupsd.conf.default; do \
114 $(RM) $(SERVERROOT)/$$file; \
115 done
116 -$(RMDIR) $(SERVERROOT)
117 -if test x$(PAMDIR) != x; then \
118 $(RM) $(BUILDROOT)$(PAMDIR)/cups; \
119 $(RMDIR) $(BUILDROOT)$(PAMDIR); \
120 fi
121
122
123 #
124 # End of "$Id: Makefile 6649 2007-07-11 21:46:42Z mike $".
125 #