]> git.ipfire.org Git - thirdparty/cups.git/blame - conf/Makefile
Load cups into easysw/current.
[thirdparty/cups.git] / conf / Makefile
CommitLineData
ef416fc2 1#
bc44d920 2# "$Id: Makefile 6649 2007-07-11 21:46:42Z mike $"
ef416fc2 3#
4# Configuration file makefile for the Common UNIX Printing System (CUPS).
5#
bc44d920 6# Copyright 2007 by Apple Inc.
fa73b229 7# Copyright 1993-2006 by Easy Software Products.
ef416fc2 8#
9# These coded instructions, statements, and computer programs are the
bc44d920 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/".
ef416fc2 14#
15
16include ../Makedefs
17
18#
19# Config files...
20#
21
bc44d920 22KEEP = cupsd.conf snmp.conf
ef416fc2 23REPLACE = mime.convs mime.types
24
25
26#
27# Make everything...
28#
29
30all:
31
32
33#
34# Clean all config and object files...
35#
36
37clean:
38
39
757d2cad 40#
41# Dummy depend...
42#
43
44depend:
45
46
ef416fc2 47#
48# Install files...
49#
50
fa73b229 51install: all
bd7854cb 52 $(INSTALL_DIR) -m 755 $(SERVERROOT)
ef416fc2 53 for file in $(KEEP); do \
54 if test -r $(SERVERROOT)/$$file ; then \
09ec0018 55 $(INSTALL_CONFIG) $$file $(SERVERROOT)/$$file.N ; \
bd7854cb 56 chgrp $(CUPS_GROUP) $(SERVERROOT)/$$file.N || true; \
ef416fc2 57 else \
09ec0018 58 $(INSTALL_CONFIG) $$file $(SERVERROOT) ; \
bd7854cb 59 chgrp $(CUPS_GROUP) $(SERVERROOT)/$$file || true; \
ef416fc2 60 fi ; \
61 done
09ec0018 62 $(INSTALL_CONFIG) cupsd.conf $(SERVERROOT)/cupsd.conf.default
bd7854cb 63 -chgrp $(CUPS_GROUP) $(SERVERROOT)/cupsd.conf.default
ef416fc2 64 for file in $(REPLACE); do \
65 if test -r $(SERVERROOT)/$$file ; then \
66 $(MV) $(SERVERROOT)/$$file $(SERVERROOT)/$$file.O ; \
67 fi ; \
89d46774 68 $(INSTALL_DATA) $$file $(SERVERROOT) ; \
ef416fc2 69 done
b423cd4c 70 -if test x$(PAMDIR) != x; then \
71 $(INSTALL_DIR) -m 755 $(BUILDROOT)$(PAMDIR); \
72 if test -r $(BUILDROOT)$(PAMDIR)/cups/$(PAMFILE) ; then \
73 $(INSTALL_DATA) $(PAMFILE) $(BUILDROOT)$(PAMDIR)/cups.N ; \
ef416fc2 74 else \
b423cd4c 75 $(INSTALL_DATA) $(PAMFILE) $(BUILDROOT)$(PAMDIR)/cups ; \
ef416fc2 76 fi ; \
77 fi
78
79
80#
757d2cad 81# Uninstall files...
82#
83
84uninstall:
85 for file in $(KEEP) $(REPLACE) cupsd.conf.default; do \
86 $(RM) $(SERVERROOT)/$$file; \
87 done
88 -$(RMDIR) $(SERVERROOT)
89 -if test x$(PAMDIR) != x; then \
90 $(RM) $(BUILDROOT)$(PAMDIR)/cups; \
91 $(RMDIR) $(BUILDROOT)$(PAMDIR); \
92 fi
93
94
95#
bc44d920 96# End of "$Id: Makefile 6649 2007-07-11 21:46:42Z mike $".
ef416fc2 97#