]> git.ipfire.org Git - thirdparty/cups.git/blob - conf/Makefile
Remove svn:keywords since they cause svn_load_dirs.pl to complain about every file.
[thirdparty/cups.git] / conf / Makefile
1 #
2 # "$Id: Makefile 177 2006-06-21 00:20:03Z jlovell $"
3 #
4 # Configuration file makefile for the Common UNIX Printing System (CUPS).
5 #
6 # Copyright 1993-2006 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 USA
19 #
20 # Voice: (301) 373-9600
21 # EMail: cups-info@cups.org
22 # WWW: http://www.cups.org
23 #
24
25 include ../Makedefs
26
27 #
28 # Config files...
29 #
30
31 KEEP = cupsd.conf
32 REPLACE = mime.convs mime.types
33
34
35 #
36 # Make everything...
37 #
38
39 all:
40
41
42 #
43 # Clean all config and object files...
44 #
45
46 clean:
47
48
49 #
50 # Dummy depend...
51 #
52
53 depend:
54
55
56 #
57 # Install files...
58 #
59
60 install: all
61 $(INSTALL_DIR) -m 755 $(SERVERROOT)
62 for file in $(KEEP); do \
63 if test -r $(SERVERROOT)/$$file ; then \
64 $(INSTALL_CONFIG) $$file $(SERVERROOT)/$$file.N ; \
65 chgrp $(CUPS_GROUP) $(SERVERROOT)/$$file.N || true; \
66 else \
67 $(INSTALL_CONFIG) $$file $(SERVERROOT) ; \
68 chgrp $(CUPS_GROUP) $(SERVERROOT)/$$file || true; \
69 fi ; \
70 done
71 $(INSTALL_CONFIG) cupsd.conf $(SERVERROOT)/cupsd.conf.default
72 -chgrp $(CUPS_GROUP) $(SERVERROOT)/cupsd.conf.default
73 for file in $(REPLACE); do \
74 if test -r $(SERVERROOT)/$$file ; then \
75 $(MV) $(SERVERROOT)/$$file $(SERVERROOT)/$$file.O ; \
76 fi ; \
77 $(INSTALL_DATA) $$file $(SERVERROOT) ; \
78 done
79 -if test x$(PAMDIR) != x; then \
80 $(INSTALL_DIR) -m 755 $(BUILDROOT)$(PAMDIR); \
81 if test -r $(BUILDROOT)$(PAMDIR)/cups/$(PAMFILE) ; then \
82 $(INSTALL_DATA) $(PAMFILE) $(BUILDROOT)$(PAMDIR)/cups.N ; \
83 else \
84 $(INSTALL_DATA) $(PAMFILE) $(BUILDROOT)$(PAMDIR)/cups ; \
85 fi ; \
86 fi
87
88
89 #
90 # Uninstall files...
91 #
92
93 uninstall:
94 for file in $(KEEP) $(REPLACE) cupsd.conf.default; do \
95 $(RM) $(SERVERROOT)/$$file; \
96 done
97 -$(RMDIR) $(SERVERROOT)
98 -if test x$(PAMDIR) != x; then \
99 $(RM) $(BUILDROOT)$(PAMDIR)/cups; \
100 $(RMDIR) $(BUILDROOT)$(PAMDIR); \
101 fi
102
103
104 #
105 # End of "$Id: Makefile 177 2006-06-21 00:20:03Z jlovell $".
106 #